Package org.bouncycastle.crypto.params
Class RSAPrivateCrtKeyParameters
- java.lang.Object
-
- org.bouncycastle.crypto.params.AsymmetricKeyParameter
-
- org.bouncycastle.crypto.params.RSAKeyParameters
-
- org.bouncycastle.crypto.params.RSAPrivateCrtKeyParameters
-
- All Implemented Interfaces:
CipherParameters
public class RSAPrivateCrtKeyParameters extends RSAKeyParameters
-
-
Constructor Summary
Constructors Constructor Description RSAPrivateCrtKeyParameters(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger p, BigInteger q, BigInteger dP, BigInteger dQ, BigInteger qInv)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description BigInteger
getDP()
BigInteger
getDQ()
BigInteger
getP()
BigInteger
getPublicExponent()
BigInteger
getQ()
BigInteger
getQInv()
-
Methods inherited from class org.bouncycastle.crypto.params.RSAKeyParameters
getExponent, getModulus
-
Methods inherited from class org.bouncycastle.crypto.params.AsymmetricKeyParameter
isPrivate
-
-
-
-
Constructor Detail
-
RSAPrivateCrtKeyParameters
public RSAPrivateCrtKeyParameters(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger p, BigInteger q, BigInteger dP, BigInteger dQ, BigInteger qInv)
-
-
Method Detail
-
getPublicExponent
public BigInteger getPublicExponent()
-
getP
public BigInteger getP()
-
getQ
public BigInteger getQ()
-
getDP
public BigInteger getDP()
-
getDQ
public BigInteger getDQ()
-
getQInv
public BigInteger getQInv()
-
-