All Packages  Class Hierarchy  This Package  Previous  Next  Index
  Class w3c.crypto.us.dsig.RSAPublicKeyImpl
java.lang.Object
   |
   +----w3c.crypto.us.dsig.RSAPublicKeyImpl
  -  public class RSAPublicKeyImpl
  -  extends Object
  -  implements RSAPublicKey
   
  -   RSAPublicKeyImpl(BigInteger, BigInteger) RSAPublicKeyImpl(BigInteger, BigInteger)
-   Create a new RSA publi key from the given  
 public exponent e and given modulus n.
  
-   RSAPublicKeyImpl(RSAPublicKey) RSAPublicKeyImpl(RSAPublicKey)
-   Create a new RSA publi key from other classes that implements
 java.security.interface.RSAPublicKey
   
  -   getAlgorithm() getAlgorithm()
-   returns the String "RSA"
  
-   getEncoded() getEncoded()
-   returns the encoding.
  
-   getExponent() getExponent()
-   returns the exponent of the RSA key
  
-   getFormat() getFormat()
-   returns the String "ASN1"
  
-   getModulus() getModulus()
-   returns the modulus of the RSA key
   
 RSAPublicKeyImpl
RSAPublicKeyImpl
 public RSAPublicKeyImpl(RSAPublicKey key)
  -  Create a new RSA publi key from other classes that implements
 java.security.interface.RSAPublicKey
 
 RSAPublicKeyImpl
RSAPublicKeyImpl
 public RSAPublicKeyImpl(BigInteger e,
                         BigInteger n)
  -  Create a new RSA publi key from the given  
 public exponent e and given modulus n.
 
   
 getModulus
getModulus
 public BigInteger getModulus()
  -  returns the modulus of the RSA key
 
 getExponent
getExponent
 public BigInteger getExponent()
  -  returns the exponent of the RSA key
 
 getAlgorithm
getAlgorithm
 public String getAlgorithm()
  -  returns the String "RSA"
 
 getFormat
getFormat
 public String getFormat()
  -  returns the String "ASN1"
 
 getEncoded
getEncoded
 public byte[] getEncoded()
  -  returns the encoding.
 
All Packages  Class Hierarchy  This Package  Previous  Next  Index