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

Variable Index

 o ident

Constructor Index

 o RSAPrivateKeySpec(BigInteger, BigInteger)
Basic constructor.

Method Index

 o getModulus()
Returns the modulus.
 o getPrivateExponent()
Returns the public exponent.

Variables

 o ident
 public static final String ident

Constructors

 o RSAPrivateKeySpec
 public RSAPrivateKeySpec(BigInteger modulus,
                          BigInteger privateExponent)
Basic constructor.

Parameters:
modulus - the modulus.
privateExponent - the private exponent.

Methods

 o getModulus
 public BigInteger getModulus()
Returns the modulus.

Returns:
the modulus.
 o getPrivateExponent
 public BigInteger getPrivateExponent()
Returns the public exponent.

Returns:
the public exponent.

All Packages  Class Hierarchy  This Package  Previous  Next  Index