ECField
public class ECFieldFp extends Object implements ECField
Constructor | Description |
---|---|
ECFieldFp |
Creates an elliptic curve prime finite field with the specified prime p . |
Modifier and Type | Method | Description |
---|---|---|
boolean |
equals |
Compares this prime finite field for equality with the specified object. |
int |
getFieldSize() |
Returns the field size in bits which is size of prime p for this prime finite field. |
BigInteger |
getP() |
Returns the prime p of this prime finite field. |
int |
hashCode() |
Returns a hash code value for this prime finite field. |
public ECFieldFp(BigInteger p)
p
.p
- the prime.NullPointerException
- if p
is null.IllegalArgumentException
- if p
is not positive.public int getFieldSize()
getFieldSize
in interface ECField
public BigInteger getP()
p
of this prime finite field.public boolean equals(Object obj)
public int hashCode()
© 1993, 2023, 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.
https://docs.oracle.com/en/java/javase/21/docs/api/java.base/java/security/spec/ECFieldFp.html