All Packages  Class Hierarchy  This Package  Previous  Next  Index  

Interface javax.crypto.interfaces.RSAPrivateKeyCrt

public interface RSAPrivateKeyCrt
extends RSAPrivateKey
The interface to an RSA private key, using the Chinese Remainder Theorem (CRT) representation.

See Also:
RSAPrivateKey

Method Index

 o getCrtCoefficient()
Returns the crtCoefficient.
 o getPrimeExponentP()
Returns the primeExponentP.
 o getPrimeExponentQ()
Returns the primeExponentQ.
 o getPrimeP()
Returns the primeP.
 o getPrimeQ()
Returns the primeQ.
 o getPublicExponent()
Returns the public exponent.

Methods

 o getPublicExponent
public abstract BigInteger getPublicExponent()
Returns the public exponent.

Returns:
the public exponent
 o getPrimeP
public abstract BigInteger getPrimeP()
Returns the primeP.

Returns:
the primeP
 o getPrimeQ
public abstract BigInteger getPrimeQ()
Returns the primeQ.

Returns:
the primeQ
 o getPrimeExponentP
public abstract BigInteger getPrimeExponentP()
Returns the primeExponentP.

Returns:
the primeExponentP
 o getPrimeExponentQ
public abstract BigInteger getPrimeExponentQ()
Returns the primeExponentQ.

Returns:
the primeExponentQ
 o getCrtCoefficient
public abstract BigInteger getCrtCoefficient()
Returns the crtCoefficient.

Returns:
the crtCoefficient

All Packages  Class Hierarchy  This Package  Previous  Next  Index