java.security.interfaces
Interface RSAMultiPrimePrivateCrtKey

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

public interface RSAMultiPrimePrivateCrtKey
extends RSAPrivateKey

Untamed: 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.

Since:
1.4
Version:
1.3 01/12/03
Author:
Valerie Peng
See Also:
java.security.spec.RSAPrivateKeySpec, java.security.spec.RSAMultiPrimePrivateCrtKeySpec, RSAPrivateKey, RSAPrivateCrtKey

Field Summary
 
Fields inherited from interface java.security.PrivateKey
serialVersionUID
 
Method Summary
 BigInteger getCrtCoefficient()
          Enabled: Returns the crtCoefficient.
 RSAOtherPrimeInfo[] getOtherPrimeInfo()
          Enabled: Returns the otherPrimeInfo or null if there are only two prime factors (p and q).
 BigInteger getPrimeExponentP()
          Enabled: Returns the primeExponentP.
 BigInteger getPrimeExponentQ()
          Enabled: Returns the primeExponentQ.
 BigInteger getPrimeP()
          Enabled: Returns the primeP.
 BigInteger getPrimeQ()
          Enabled: Returns the primeQ.
 BigInteger getPublicExponent()
          Enabled: Returns the public exponent.
 
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
 

Method Detail

getPublicExponent

public BigInteger getPublicExponent()
Enabled: Returns the public exponent.

Returns:
the public exponent.

getPrimeP

public BigInteger getPrimeP()
Enabled: Returns the primeP.

Returns:
the primeP.

getPrimeQ

public BigInteger getPrimeQ()
Enabled: Returns the primeQ.

Returns:
the primeQ.

getPrimeExponentP

public BigInteger getPrimeExponentP()
Enabled: Returns the primeExponentP.

Returns:
the primeExponentP.

getPrimeExponentQ

public BigInteger getPrimeExponentQ()
Enabled: Returns the primeExponentQ.

Returns:
the primeExponentQ.

getCrtCoefficient

public BigInteger getCrtCoefficient()
Enabled: Returns the crtCoefficient.

Returns:
the crtCoefficient.

getOtherPrimeInfo

public RSAOtherPrimeInfo[] getOtherPrimeInfo()
Enabled: Returns the otherPrimeInfo or null if there are only two prime factors (p and q).

Returns:
the otherPrimeInfo.


comments?