Package java.security.interfaces
Interface ECPrivateKey
-
- All Superinterfaces:
ECKey,Key,PrivateKey,Serializable
- All Known Implementing Classes:
BCECPrivateKey,JCEECPrivateKey,OpenSSLECPrivateKey
public interface ECPrivateKey extends PrivateKey, ECKey
The interface for an Elliptic Curve (EC) private 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 BigIntegergetS()Returns the private valueS.-
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
-
getS
BigInteger getS()
Returns the private valueS.- Returns:
- the private value
S.
-
-