Home » openjdk-7 » java » security » interfaces » [javadoc | source]
java.security.interfaces
public interface: RSAPrivateCrtKey [javadoc | source]

All Implemented Interfaces:
    RSAPrivateKey

The interface to an RSA private key, as defined in the PKCS#1 standard, using the Chinese Remainder Theorem (CRT) information values.
Field Summary
static final  long serialVersionUID     
Method from java.security.interfaces.RSAPrivateCrtKey Summary:
getCrtCoefficient,   getPrimeExponentP,   getPrimeExponentQ,   getPrimeP,   getPrimeQ,   getPublicExponent
Method from java.security.interfaces.RSAPrivateCrtKey Detail:
 public BigInteger getCrtCoefficient()
    Returns the crtCoefficient.
 public BigInteger getPrimeExponentP()
    Returns the primeExponentP.
 public BigInteger getPrimeExponentQ()
    Returns the primeExponentQ.
 public BigInteger getPrimeP()
    Returns the primeP.
 public BigInteger getPrimeQ()
    Returns the primeQ.
 public BigInteger getPublicExponent()
    Returns the public exponent.