Package org.bouncycastle.asn1.pkcs
Class RSAPrivateKeyStructure
- java.lang.Object
-
- org.bouncycastle.asn1.ASN1Object
-
- org.bouncycastle.asn1.pkcs.RSAPrivateKeyStructure
-
- All Implemented Interfaces:
ASN1Encodable,Encodable
public class RSAPrivateKeyStructure extends ASN1Object
Deprecated.use RSAPrivateKey
-
-
Constructor Summary
Constructors Constructor Description RSAPrivateKeyStructure(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient)Deprecated.RSAPrivateKeyStructure(ASN1Sequence seq)Deprecated.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description BigIntegergetCoefficient()Deprecated.BigIntegergetExponent1()Deprecated.BigIntegergetExponent2()Deprecated.static RSAPrivateKeyStructuregetInstance(Object obj)Deprecated.static RSAPrivateKeyStructuregetInstance(ASN1TaggedObject obj, boolean explicit)Deprecated.BigIntegergetModulus()Deprecated.BigIntegergetPrime1()Deprecated.BigIntegergetPrime2()Deprecated.BigIntegergetPrivateExponent()Deprecated.BigIntegergetPublicExponent()Deprecated.intgetVersion()Deprecated.ASN1PrimitivetoASN1Primitive()Deprecated.This outputs the key in PKCS1v2 format.-
Methods inherited from class org.bouncycastle.asn1.ASN1Object
equals, getEncoded, getEncoded, hasEncodedTagValue, hashCode, toASN1Object
-
-
-
-
Constructor Detail
-
RSAPrivateKeyStructure
public RSAPrivateKeyStructure(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger prime1, BigInteger prime2, BigInteger exponent1, BigInteger exponent2, BigInteger coefficient)
Deprecated.
-
RSAPrivateKeyStructure
public RSAPrivateKeyStructure(ASN1Sequence seq)
Deprecated.
-
-
Method Detail
-
getInstance
public static RSAPrivateKeyStructure getInstance(ASN1TaggedObject obj, boolean explicit)
Deprecated.
-
getInstance
public static RSAPrivateKeyStructure getInstance(Object obj)
Deprecated.
-
getVersion
public int getVersion()
Deprecated.
-
getModulus
public BigInteger getModulus()
Deprecated.
-
getPublicExponent
public BigInteger getPublicExponent()
Deprecated.
-
getPrivateExponent
public BigInteger getPrivateExponent()
Deprecated.
-
getPrime1
public BigInteger getPrime1()
Deprecated.
-
getPrime2
public BigInteger getPrime2()
Deprecated.
-
getExponent1
public BigInteger getExponent1()
Deprecated.
-
getExponent2
public BigInteger getExponent2()
Deprecated.
-
getCoefficient
public BigInteger getCoefficient()
Deprecated.
-
toASN1Primitive
public ASN1Primitive toASN1Primitive()
Deprecated.This outputs the key in PKCS1v2 format.RSAPrivateKey ::= SEQUENCE { version Version, modulus INTEGER, -- n publicExponent INTEGER, -- e privateExponent INTEGER, -- d prime1 INTEGER, -- p prime2 INTEGER, -- q exponent1 INTEGER, -- d mod (p-1) exponent2 INTEGER, -- d mod (q-1) coefficient INTEGER, -- (inverse of q) mod p otherPrimeInfos OtherPrimeInfos OPTIONAL } Version ::= INTEGER { two-prime(0), multi(1) } (CONSTRAINED BY {-- version must be multi if otherPrimeInfos present --})This routine is written to output PKCS1 version 2.1, private keys.
- Specified by:
toASN1Primitivein interfaceASN1Encodable- Specified by:
toASN1Primitivein classASN1Object- Returns:
- a primitive representation of this object.
-
-