Class au.net.aba.security.spec.RSAPublicKeySpec
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
A class that provides a specification for an RSA Public key.

Variable Index

 o ident
 o modulus
 o publicExponent

Constructor Index

 o RSAPublicKeySpec(BigInteger, BigInteger)

Method Index

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

Variables

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

Constructors

 o RSAPublicKeySpec
  public RSAPublicKeySpec(BigInteger modulus,
                          BigInteger publicExponent)

Methods

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

All Packages  Class Hierarchy  This Package  Previous  Next  Index