Searched defs:ECPoint (Results 1 - 1 of 1) sorted by relevance

/openjdk7/jdk/src/share/classes/java/security/spec/
H A DECPoint.java39 public class ECPoint { class
47 public static final ECPoint POINT_INFINITY = new ECPoint();
50 private ECPoint() { method in class:ECPoint
56 * Creates an ECPoint from the specified affine x-coordinate
63 public ECPoint(BigInteger x, BigInteger y) { method in class:ECPoint
94 * ECPoint and the affine coordinates match, false otherwise.
99 if (obj instanceof ECPoint) {
100 return ((x.equals(((ECPoint)obj).x)) &&
101 (y.equals(((ECPoint)ob
[all...]

Completed in 218 milliseconds