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

All Implemented Interfaces:
    RSAPrivateKey

The interface to an RSA multi-prime private key, as defined in the PKCS#1 v2.1, using the Chinese Remainder Theorem (CRT) information values.
Field Summary
static final  long serialVersionUID     
Method from java.security.interfaces.RSAMultiPrimePrivateCrtKey Summary:
getCrtCoefficient,   getOtherPrimeInfo,   getPrimeExponentP,   getPrimeExponentQ,   getPrimeP,   getPrimeQ,   getPublicExponent
Method from java.security.interfaces.RSAMultiPrimePrivateCrtKey Detail:
 public BigInteger getCrtCoefficient()
    Returns the crtCoefficient.
 public RSAOtherPrimeInfo[] getOtherPrimeInfo()
    Returns the otherPrimeInfo or null if there are only two prime factors (p and q).
 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.