Modifier and Type | Field and Description |
---|---|
public static final ECPoint | POINT_INFINITY
This defines the point at infinity. |
private final BigInteger | |
private final BigInteger |
Access | Constructor and Description |
---|---|
private | |
public | ECPoint(BigInteger
the affine x-coordinate. x, BigInteger the affine y-coordinate. y)Creates an ECPoint from the specified affine x-coordinate
|
Modifier and Type | Method and Description |
---|---|
public boolean | Returns: true ifobj is an instance of
ECPoint and the affine coordinates match, false otherwise.the object to be compared. obj)Overrides java. Compares this elliptic curve point for equality with the specified object. |
public BigInteger | |
public BigInteger | |
public int | Returns: the hash code value for this elliptic curve pointOverrides java. Returns the hash code value for this elliptic curve point. |
POINT_INFINITY | back to summary |
---|---|
public static final ECPoint POINT_INFINITY This defines the point at infinity. |
x | back to summary |
---|---|
private final BigInteger x |
y | back to summary |
---|---|
private final BigInteger y |
ECPoint | back to summary |
---|---|
private ECPoint() |
ECPoint | back to summary |
---|---|
public ECPoint(BigInteger x, BigInteger y) Creates an ECPoint from the specified affine x-coordinate
|
equals | back to summary |
---|---|
public boolean equals(Object obj) Overrides java. Compares this elliptic curve point for equality with the specified object. |
getAffineX | back to summary |
---|---|
public BigInteger getAffineX() Returns the affine x-coordinate Note POINT_INFINITY has a null affine x-coordinate.
|
getAffineY | back to summary |
---|---|
public BigInteger getAffineY() Returns the affine y-coordinate Note POINT_INFINITY has a null affine y-coordinate.
|
hashCode | back to summary |
---|---|
public int hashCode() Overrides java. Returns the hash code value for this elliptic curve point.
|