Package java.security.interfaces
Interface RSAPrivateKey
-
- All Superinterfaces:
Key,PrivateKey,RSAKey,Serializable
- All Known Subinterfaces:
RSAMultiPrimePrivateCrtKey,RSAPrivateCrtKey
- All Known Implementing Classes:
BCRSAPrivateCrtKey,BCRSAPrivateKey,JCERSAPrivateCrtKey,JCERSAPrivateKey,OpenSSLRSAPrivateCrtKey,OpenSSLRSAPrivateKey
public interface RSAPrivateKey extends PrivateKey, RSAKey
The interface for an PKCS#1 RSA 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 BigIntegergetPrivateExponent()Returns the private exponentd.-
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
-
Methods inherited from interface java.security.interfaces.RSAKey
getModulus
-
-
-
-
Field Detail
-
serialVersionUID
static final long serialVersionUID
The serial version identifier.- See Also:
- Constant Field Values
-
-
Method Detail
-
getPrivateExponent
BigInteger getPrivateExponent()
Returns the private exponentd.- Returns:
- the private exponent
d.
-
-