Package java.security.interfaces
Interface ECPublicKey
-
- All Superinterfaces:
ECKey,Key,PublicKey,Serializable
- All Known Implementing Classes:
BCECPublicKey,JCEECPublicKey,OpenSSLECPublicKey
public interface ECPublicKey extends PublicKey, ECKey
The interface for an Elliptic Curve (EC) public key.
-
-
Field Summary
Fields Modifier and Type Field Description static longserialVersionUIDThe serial version identifier.
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ECPointgetW()Returns the public pointWon an elliptic curve (EC).-
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
The serial version identifier.- See Also:
- Constant Field Values
-
-
Method Detail
-
getW
ECPoint getW()
Returns the public pointWon an elliptic curve (EC).- Returns:
- the public point
Won an elliptic curve (EC).
-
-