public class ECPoint extends Object
| Modifier and Type | Field and Description |
|---|---|
static ECPoint |
POINT_INFINITY
This defines the point at infinity.
|
| Constructor and Description |
|---|
ECPoint(BigInteger
Creates an ECPoint from the specified affine x-coordinate
x and affine y-coordinate
y.
|
| Modifier and Type | Method and Description |
|---|---|
boolean |
equals(Object
Compares this elliptic curve point for equality with the specified object.
|
BigInteger |
getAffineX()
Returns the affine x-coordinate
x.
|
BigInteger |
getAffineY()
Returns the affine y-coordinate
y.
|
int |
hashCode()
Returns a hash code value for this elliptic curve point.
|
public static final ECPointPOINT_INFINITY
public ECPoint(BigIntegerx, BigInteger y)
x and affine y-coordinate
y.
x - the affine x-coordinate.
y - the affine y-coordinate.
NullPointerException - if
x or
y is null.
public BigIntegergetAffineX()
x. Note: POINT_INFINITY has a null affine x-coordinate.
public BigIntegergetAffineY()
y. Note: POINT_INFINITY has a null affine y-coordinate.
public boolean equals(Objectobj)
equals in class
Object
obj - the object to be compared.
obj is an instance of ECPoint and the affine coordinates match, false otherwise.
Object.hashCode() ,
HashMap
public int hashCode()
hashCode in class
Object
Object.equals(java.lang.Object) ,
System.identityHashCode(java.lang.Object)