Google

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

org.bouncycastle.jce.provider
Class JCERSAPrivateKey

java.lang.Object
  |
  +--org.bouncycastle.jce.provider.JCERSAPrivateKey
All Implemented Interfaces:
java.security.Key, PKCS12BagAttributeCarrier, java.security.PrivateKey, java.security.interfaces.RSAKey, java.security.interfaces.RSAPrivateKey, java.io.Serializable
Direct Known Subclasses:
JCERSAPrivateCrtKey

public class JCERSAPrivateKey
extends java.lang.Object
implements java.security.interfaces.RSAPrivateKey, PKCS12BagAttributeCarrier

See Also:
Serialized Form

Field Summary
protected  java.math.BigInteger modulus
           
protected  java.math.BigInteger privateExponent
           
 
Fields inherited from interface java.security.PrivateKey
serialVersionUID
 
Constructor Summary
protected JCERSAPrivateKey()
           
 
Method Summary
 java.lang.String getAlgorithm()
           
 DEREncodable getBagAttribute(DERObjectIdentifier oid)
           
 java.util.Enumeration getBagAttributeKeys()
           
 byte[] getEncoded()
           
 java.lang.String getFormat()
           
 java.math.BigInteger getModulus()
           
 java.math.BigInteger getPrivateExponent()
           
 void setBagAttribute(DERObjectIdentifier oid, DEREncodable attribute)
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

modulus

protected java.math.BigInteger modulus

privateExponent

protected java.math.BigInteger privateExponent
Constructor Detail

JCERSAPrivateKey

protected JCERSAPrivateKey()
Method Detail

getModulus

public java.math.BigInteger getModulus()
Specified by:
getModulus in interface java.security.interfaces.RSAKey

getPrivateExponent

public java.math.BigInteger getPrivateExponent()
Specified by:
getPrivateExponent in interface java.security.interfaces.RSAPrivateKey

getAlgorithm

public java.lang.String getAlgorithm()
Specified by:
getAlgorithm in interface java.security.Key

getFormat

public java.lang.String getFormat()
Specified by:
getFormat in interface java.security.Key

getEncoded

public byte[] getEncoded()
Specified by:
getEncoded in interface java.security.Key

setBagAttribute

public void setBagAttribute(DERObjectIdentifier oid,
                            DEREncodable attribute)
Specified by:
setBagAttribute in interface PKCS12BagAttributeCarrier

getBagAttribute

public DEREncodable getBagAttribute(DERObjectIdentifier oid)
Specified by:
getBagAttribute in interface PKCS12BagAttributeCarrier

getBagAttributeKeys

public java.util.Enumeration getBagAttributeKeys()
Specified by:
getBagAttributeKeys in interface PKCS12BagAttributeCarrier

Bouncy Castle Cryptography 1.11