|
Bouncy Castle Cryptography 1.11 API Specification: Class RSAPrivateCrtKeyParameters
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 |
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)
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
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)
getPublicExponent
public java.math.BigInteger getPublicExponent()
getP
public java.math.BigInteger getP()
getQ
public java.math.BigInteger getQ()
getDP
public java.math.BigInteger getDP()
getDQ
public java.math.BigInteger getDQ()
getQInv
public java.math.BigInteger getQInv()
|