public class ECFieldFp extends Object implements ECField
This immutable class defines an elliptic curve (EC) prime finite field.
ECField
public ECFieldFp(BigInteger p)
Creates an elliptic curve prime finite field with the specified prime p
.
p
- the prime.NullPointerException
- if p
is null.IllegalArgumentException
- if p
is not positive.public int getFieldSize()
Returns the field size in bits which is size of prime p for this prime finite field.
getFieldSize
in interface ECField
public BigInteger getP()
Returns the prime p
of this prime finite field.
public boolean equals(Object obj)
Compares this prime finite field for equality with the specified object.
equals
in class Object
obj
- the object to be compared.obj
is an instance of ECFieldFp and the prime value match, false otherwise.Object.hashCode()
, HashMap
public int hashCode()
Returns a hash code value for this prime finite field.
hashCode
in class Object
Object.equals(java.lang.Object)
, System.identityHashCode(java.lang.Object)
© 1993–2017, Oracle and/or its affiliates. All rights reserved.
Documentation extracted from Debian's OpenJDK Development Kit package.
Licensed under the GNU General Public License, version 2, with the Classpath Exception.
Various third party code in OpenJDK is licensed under different licenses (see Debian package).
Java and OpenJDK are trademarks or registered trademarks of Oracle and/or its affiliates.