ami.security
Class AMIPublicKey

java.lang.Object
  |
  +--ami.security.AMIRSAKey
        |
        +--ami.security.AMIPublicKey

public final class AMIPublicKey
extends AMIRSAKey

AMI public key

Version:
1.0
Author:
Bertrand Florat

Field Summary
static AMIPublicKey VOID_KEY
          Standard void representation for a RSA key, used as defaut in some cases
 
Fields inherited from class ami.security.AMIRSAKey
exp, n, RADIX_REPRESENTATION
 
Constructor Summary
AMIPublicKey(BigInteger exp, BigInteger n)
          Constructor used for our own public key generation ( normaly only once )
AMIPublicKey(String sValue)
          Constructor used during parsing of external public keys
 
Method Summary
(package private) static void ()
           
 
Methods inherited from class ami.security.AMIRSAKey
equals, getExp, getN, hashCode, toString
 
Methods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, registerNatives, wait, wait, wait
 

Field Detail

VOID_KEY

public static AMIPublicKey VOID_KEY
Standard void representation for a RSA key, used as defaut in some cases
Constructor Detail

AMIPublicKey

public AMIPublicKey(BigInteger exp,
                    BigInteger n)
Constructor used for our own public key generation ( normaly only once )

AMIPublicKey

public AMIPublicKey(String sValue)
             throws AMIException
Constructor used during parsing of external public keys
Method Detail

static void ()