java.security.interfaces
Interface RSAPrivateCrtKey

All Superinterfaces:
Key, PrivateKey, RSAKey, RSAPrivateKey, Serializable

public interface RSAPrivateCrtKey
extends RSAPrivateKey

This interface provides access to information about an RSA private key in Chinese Remainder Theorem (CRT) format.


Field Summary
static long serialVersionUID
           
 
Method Summary
 BigInteger getCrtCoefficient()
          Returns the CRT coefficient
 BigInteger getPrimeExponentP()
          Returns the primeExponentP
 BigInteger getPrimeExponentQ()
          Returns the primeExponentQ
 BigInteger getPrimeP()
          Returns the primeP value
 BigInteger getPrimeQ()
          Returns the primeQ value
 BigInteger getPublicExponent()
          Returns the public exponent for this key
 
Methods inherited from interface java.security.interfaces.RSAPrivateKey
getPrivateExponent
 
Methods inherited from interface java.security.Key
getAlgorithm, getEncoded, getFormat
 
Methods inherited from interface java.security.interfaces.RSAKey
getModulus
 

Field Detail

serialVersionUID

static final long serialVersionUID
See Also:
Constant Field Values
Method Detail

getPublicExponent

BigInteger getPublicExponent()
Returns the public exponent for this key

Returns:
The public exponent for this key

getPrimeP

BigInteger getPrimeP()
Returns the primeP value

Returns:
The primeP value

getPrimeQ

BigInteger getPrimeQ()
Returns the primeQ value

Returns:
The primeQ value

getPrimeExponentP

BigInteger getPrimeExponentP()
Returns the primeExponentP

Returns:
The primeExponentP

getPrimeExponentQ

BigInteger getPrimeExponentQ()
Returns the primeExponentQ

Returns:
The primeExponentQ

getCrtCoefficient

BigInteger getCrtCoefficient()
Returns the CRT coefficient

Returns:
The CRT coefficient