All Packages Class Hierarchy This Package Previous Next Index
Class au.net.aba.security.spec.RSAPrivateKeySpec
java.lang.Object
|
+----au.net.aba.security.spec.RSAPrivateKeySpec
- public class RSAPrivateKeySpec
- extends Object
- implements KeySpec
This class specifies an RSA private key.
- See Also:
- Key, KeyFactory, KeySpec, PKCS8EncodedKeySpec, RSAPublicKeySpec, RSAPrivateKeyCrtSpec
-
ident
-
-
RSAPrivateKeySpec(BigInteger, BigInteger)
- Basic constructor.
-
getModulus()
- Returns the modulus.
-
getPrivateExponent()
- Returns the public exponent.
ident
public static final String ident
RSAPrivateKeySpec
public RSAPrivateKeySpec(BigInteger modulus,
BigInteger privateExponent)
- Basic constructor.
- Parameters:
- modulus - the modulus.
- privateExponent - the private exponent.
getModulus
public BigInteger getModulus()
- Returns the modulus.
- Returns:
- the modulus.
getPrivateExponent
public BigInteger getPrivateExponent()
- Returns the public exponent.
- Returns:
- the public exponent.
All Packages Class Hierarchy This Package Previous Next Index