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
Field Summary |
private java.math.BigInteger |
dP
|
private java.math.BigInteger |
dQ
|
private java.math.BigInteger |
p
|
private java.math.BigInteger |
q
|
private java.math.BigInteger |
qInv
|
Constructor Summary |
RSAPrivateCrtKeyParameters(java.math.BigInteger modulus,
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 |
java.math.BigInteger |
getDP()
|
java.math.BigInteger |
getDQ()
|
java.math.BigInteger |
getP()
|
java.math.BigInteger |
getQ()
|
java.math.BigInteger |
getQInv()
|
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
p
private java.math.BigInteger p
q
private java.math.BigInteger q
dP
private java.math.BigInteger dP
dQ
private java.math.BigInteger dQ
qInv
private java.math.BigInteger qInv
RSAPrivateCrtKeyParameters
public RSAPrivateCrtKeyParameters(java.math.BigInteger modulus,
java.math.BigInteger privateExponent,
java.math.BigInteger p,
java.math.BigInteger q,
java.math.BigInteger dP,
java.math.BigInteger dQ,
java.math.BigInteger qInv)
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()
JavaDoc