|
Bouncy Castle Cryptography 1.11 API Specification: Class RSAPublicKeyStructure
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(DERConstructedSequence seq)
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
|