/* * @(#)ECPoint.java 1.3 03/12/19 * * Copyright 2004 Sun Microsystems, Inc. All rights reserved. * SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms. */ package java.security.spec; import java.math.BigInteger; /** * 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. * * @author Valerie Peng * @version 1.3, 12/19/03 * * @since 1.5 */ public class ECPoint { private final BigInteger x; private final BigInteger y; /** * This defines the point at infinity. */ public static final ECPoint POINT_INFINITY = new ECPoint(); // private constructor for constructing point at infinity private ECPoint() { this.x = null; this.y = null; } /** * Creates an ECPoint from the specified affine x-coordinate * x and affine y-coordinate y. * @param x the affine x-coordinate. * @param y the affine y-coordinate. * @exception NullPointerException if x or * y is null. */ public ECPoint(BigInteger x, BigInteger y) { if ((x==null) || (y==null)) { throw new NullPointerException("affine coordinate x or y is null"); } this.x = x; this.y = y; } /** * Returns the affine x-coordinate x. * Note: POINT_INFINITY has a null affine x-coordinate. * @return the affine x-coordinate. */ public BigInteger getAffineX() { return x; } /** * Returns the affine y-coordinate y. * Note: POINT_INFINITY has a null affine y-coordinate. * @return the affine y-coordinate. */ public BigInteger getAffineY() { return y; } /** * Compares this elliptic curve point for equality with * the specified object. * @param obj the object to be compared. * @return true if obj is an instance of * ECPoint and the affine coordinates match, false otherwise. */ public boolean equals(Object obj) { if (this == obj) return true; if (this == POINT_INFINITY) return false; if (obj instanceof ECPoint) { return ((x.equals(((ECPoint)obj).x)) && (y.equals(((ECPoint)obj).y))); } return false; } /** * Returns a hash code value for this elliptic curve point. * @return a hash code value. */ public int hashCode() { if (this == POINT_INFINITY) return 0; return x.hashCode() << 5 + y.hashCode(); } }