FileDocCategorySizeDatePackage
RSAPrivateCrtKeyParameters.javaAPI DocAzureus 3.0.3.41183Tue Jun 08 05:13:00 BST 2004org.bouncycastle.crypto.params

RSAPrivateCrtKeyParameters

public class RSAPrivateCrtKeyParameters extends RSAKeyParameters

Fields Summary
private BigInteger
e
private BigInteger
p
private BigInteger
q
private BigInteger
dP
private BigInteger
dQ
private BigInteger
qInv
Constructors Summary
public RSAPrivateCrtKeyParameters(BigInteger modulus, BigInteger publicExponent, BigInteger privateExponent, BigInteger p, BigInteger q, BigInteger dP, BigInteger dQ, BigInteger qInv)

        super(true, modulus, privateExponent);

        this.e = publicExponent;
        this.p = p;
        this.q = q;
        this.dP = dP;
        this.dQ = dQ;
        this.qInv = qInv;
    
Methods Summary
public java.math.BigIntegergetDP()

        return dP;
    
public java.math.BigIntegergetDQ()

        return dQ;
    
public java.math.BigIntegergetP()

        return p;
    
public java.math.BigIntegergetPublicExponent()

        return e;
    
public java.math.BigIntegergetQ()

        return q;
    
public java.math.BigIntegergetQInv()

        return qInv;