Class RSAPrivateKeySpec
java.lang.Object
java.security.spec.RSAPrivateKeySpec
- All Implemented Interfaces:
- KeySpec
- Direct Known Subclasses:
- RSAMultiPrimePrivateCrtKeySpec,- RSAPrivateCrtKeySpec
- 
Constructor SummaryConstructorsConstructorDescriptionRSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent) Creates a new RSAPrivateKeySpec.RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent, AlgorithmParameterSpec params) Creates a new RSAPrivateKeySpec with additional key parameters.
- 
Method SummaryModifier and TypeMethodDescriptionReturns the modulus.Returns the parameters associated with this key, may be null if not present.Returns the private exponent.
- 
Constructor Details- 
RSAPrivateKeySpecCreates a new RSAPrivateKeySpec.- Parameters:
- modulus- the modulus
- privateExponent- the private exponent
 
- 
RSAPrivateKeySpecpublic RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent, AlgorithmParameterSpec params) Creates a new RSAPrivateKeySpec with additional key parameters.- Parameters:
- modulus- the modulus
- privateExponent- the private exponent
- params- the parameters associated with this key, may be null
- Since:
- 11
 
 
- 
- 
Method Details- 
getModulus
- 
getPrivateExponent
- 
getParamsReturns the parameters associated with this key, may be null if not present.- Returns:
- the parameters associated with this key
- Since:
- 11
 
 
-