Class ECPoint
java.lang.Object
java.security.spec.ECPoint
This immutable class represents a point on an elliptic curve (EC)
in affine coordinates. Other coordinate systems can
extend this class to represent this point in other
coordinates.
- Since:
- 1.5
-
Field Summary
Fields -
Constructor Summary
ConstructorsConstructorDescriptionECPoint(BigInteger x, BigInteger y) Creates an ECPoint from the specified affine x-coordinatexand affine y-coordinatey. -
Method Summary
Modifier and TypeMethodDescriptionbooleanCompares this elliptic curve point for equality with the specified object.Returns the affine x-coordinatex.Returns the affine y-coordinatey.inthashCode()Returns the hash code value for this elliptic curve point.Methods declared in class Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitModifier and TypeMethodDescriptionprotected Objectclone()Creates and returns a copy of this object.protected voidfinalize()Deprecated, for removal: This API element is subject to removal in a future version.Finalization is deprecated and subject to removal in a future release.final Class<?> getClass()Returns the runtime class of thisObject.final voidnotify()Wakes up a single thread that is waiting on this object's monitor.final voidWakes up all threads that are waiting on this object's monitor.toString()Returns a string representation of the object.final voidwait()Causes the current thread to wait until it is awakened, typically by being notified or interrupted.final voidwait(long timeoutMillis) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.final voidwait(long timeoutMillis, int nanos) Causes the current thread to wait until it is awakened, typically by being notified or interrupted, or until a certain amount of real time has elapsed.
-
Field Details
-
POINT_INFINITY
This defines the point at infinity.
-
-
Constructor Details
-
ECPoint
Creates an ECPoint from the specified affine x-coordinatexand affine y-coordinatey.- Parameters:
x- the affine x-coordinate.y- the affine y-coordinate.- Throws:
NullPointerException- ifxoryis null.
-
-
Method Details
-
getAffineX
Returns the affine x-coordinatex. Note: POINT_INFINITY has a null affine x-coordinate.- Returns:
- the affine x-coordinate.
-
getAffineY
Returns the affine y-coordinatey. Note: POINT_INFINITY has a null affine y-coordinate.- Returns:
- the affine y-coordinate.
-
equals
-
hashCode
-