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(java.math.BigInteger modulus, java.math.BigInteger publicExponent, java.math.BigInteger privateExponent, java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger dP, java.math.BigInteger dQ, java.math.BigInteger qInv)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.math.BigInteger
getDP()
java.math.BigInteger
getDQ()
java.math.BigInteger
getP()
java.math.BigInteger
getPublicExponent()
java.math.BigInteger
getQ()
java.math.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(java.math.BigInteger modulus, java.math.BigInteger publicExponent, java.math.BigInteger privateExponent, java.math.BigInteger p, java.math.BigInteger q, java.math.BigInteger dP, java.math.BigInteger dQ, java.math.BigInteger qInv)
-
-