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
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
RSAPublicKeyStructure
public RSAPublicKeyStructure(java.math.BigInteger modulus,
java.math.BigInteger publicExponent)
RSAPublicKeyStructure
public RSAPublicKeyStructure(ASN1Sequence seq)
getInstance
public static RSAPublicKeyStructure getInstance(ASN1TaggedObject obj,
boolean explicit)
getInstance
public static RSAPublicKeyStructure getInstance(java.lang.Object obj)
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