Name

ECPoint

Synopsis

This class defines an immutable representation of a point on an elliptic curve, using affine coordinates.

public class ECPoint {
// Public Constructors
     public ECPoint(java.math.BigInteger x, java.math.BigInteger y);  
// Public Constants
     public static final ECPoint POINT_INFINITY;  
// Public Instance Methods
     public java.math.BigInteger getAffineX( );  
     public java.math.BigInteger getAffineY( );  
// Public Methods Overriding Object
     public boolean equals(Object obj);  
     public int hashCode( );  
}

Passed To

ECParameterSpec.ECParameterSpec( ), ECPublicKeySpec.ECPublicKeySpec( )

Returned By

java.security.interfaces.ECPublicKey.getW( ), ECParameterSpec.getGenerator( ), ECPublicKeySpec.getW( )

Get Java in a Nutshell, 5th Edition now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.