All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class au.net.aba.security.spec.RSAPublicKeySpec

java.lang.Object
   |
   +----au.net.aba.security.spec.RSAPublicKeySpec

public class RSAPublicKeySpec
extends Object
implements KeySpec
This class specifies an RSA public key.

See Also:
Key, KeyFactory, KeySpec, X509EncodedKeySpec, RSAPrivateKeySpec, RSAPrivateKeyCrtSpec

Variable Index

 o ident
 o modulus
 o publicExponent

Constructor Index

 o RSAPublicKeySpec(BigInteger, BigInteger)
Basic constructor.

Method Index

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

Variables

 o ident
 public static final String ident
 o modulus
 protected BigInteger modulus
 o publicExponent
 protected BigInteger publicExponent

Constructors

 o RSAPublicKeySpec
 public RSAPublicKeySpec(BigInteger modulus,
                         BigInteger publicExponent)
Basic constructor.

Parameters:
modulus - the modulus.
publicExponent - the public exponent.

Methods

 o getModulus
 public BigInteger getModulus()
Returns the modulus.

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

Returns:
the public exponent.

All Packages  Class Hierarchy  This Package  Previous  Next  Index