Package java.security.interfaces
Interface DSAPrivateKey
-
- All Superinterfaces:
DSAKey,Key,PrivateKey,Serializable
- All Known Implementing Classes:
BCDSAPrivateKey,JDKDSAPrivateKey
public interface DSAPrivateKey extends DSAKey, PrivateKey
The interface for a Digital Signature Algorithm (DSA) 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 BigIntegergetX()Returns the private key valuex.-
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
-
getX
BigInteger getX()
Returns the private key valuex.- Returns:
- the private key value
x.
-
-