Bouncy Castle Cryptography 1.11 API Specification: Class RSAPublicKeyStructure
Bouncy Castle Cryptography 1.11

org.bouncycastle.asn1.x509
Class RSAPublicKeyStructure

java.lang.Object
  |
  +--org.bouncycastle.asn1.x509.RSAPublicKeyStructure
All Implemented Interfaces:
DEREncodable

public class RSAPublicKeyStructure
extends java.lang.Object
implements DEREncodable


Constructor Summary
RSAPublicKeyStructure(java.math.BigInteger modulus, java.math.BigInteger publicExponent)
           
RSAPublicKeyStructure(DERConstructedSequence seq)
           
 
Method Summary
 DERObject getDERObject()
          This outputs the key in PKCS1v2 format.
 java.math.BigInteger getModulus()
           
 java.math.BigInteger getPublicExponent()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

RSAPublicKeyStructure

public RSAPublicKeyStructure(java.math.BigInteger modulus,
                             java.math.BigInteger publicExponent)

RSAPublicKeyStructure

public RSAPublicKeyStructure(DERConstructedSequence seq)
Method Detail

getModulus

public java.math.BigInteger getModulus()

getPublicExponent

public java.math.BigInteger getPublicExponent()

getDERObject

public DERObject getDERObject()
This outputs the key in PKCS1v2 format.
      RSAPublicKey ::= SEQUENCE {
                          modulus INTEGER, -- n
                          publicExponent INTEGER, -- e
                      }
 

Specified by:
getDERObject in interface DEREncodable

Bouncy Castle Cryptography 1.11