com.ibm.security12.java.security.interfaces
Interface RSAPrivateCrtKey


public abstract interface RSAPrivateCrtKey
extends RSAPrivateKey

The interface to an RSA private key, as defined in the PKCS#1 standard, using the Chinese Remainder Theorem (CRT) information values.

Version:
1.5, 98/12/01
Author:
Jan Luehe
See Also:
RSAPrivateKey

Fields inherited from class java.security.PrivateKey
serialVersionUID
 
Fields inherited from class java.security.Key
serialVersionUID
 
Fields inherited from class java.io.Serializable
serialVersionUID
 
Method Summary
 java.math.BigInteger getCrtCoefficient()
          Returns the crtCoefficient.
 java.math.BigInteger getPrimeExponentP()
          Returns the primeExponentP.
 java.math.BigInteger getPrimeExponentQ()
          Returns the primeExponentQ.
 java.math.BigInteger getPrimeP()
          Returns the primeP.
 java.math.BigInteger getPrimeQ()
          Returns the primeQ.
 java.math.BigInteger getPublicExponent()
          Returns the public exponent.
 
Methods inherited from interface com.ibm.security12.java.security.interfaces.RSAPrivateKey
getModulus, getPrivateExponent
 
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
 

Method Detail

getPublicExponent

public java.math.BigInteger getPublicExponent()
Returns the public exponent.
Returns:
the public exponent

getPrimeP

public java.math.BigInteger getPrimeP()
Returns the primeP.
Returns:
the primeP

getPrimeQ

public java.math.BigInteger getPrimeQ()
Returns the primeQ.
Returns:
the primeQ

getPrimeExponentP

public java.math.BigInteger getPrimeExponentP()
Returns the primeExponentP.
Returns:
the primeExponentP

getPrimeExponentQ

public java.math.BigInteger getPrimeExponentQ()
Returns the primeExponentQ.
Returns:
the primeExponentQ

getCrtCoefficient

public java.math.BigInteger getCrtCoefficient()
Returns the crtCoefficient.
Returns:
the crtCoefficient