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
getCrtCoefficient()
- Returns the crtCoefficient.
getPrimeExponentP()
- Returns the primeExponentP.
getPrimeExponentQ()
- Returns the primeExponentQ.
getPrimeP()
- Returns the primeP.
getPrimeQ()
- Returns the primeQ.
getPublicExponent()
- Returns the public exponent.
getPublicExponent
public abstract BigInteger getPublicExponent()
- Returns the public exponent.
- Returns:
- the public exponent
getPrimeP
public abstract BigInteger getPrimeP()
- Returns the primeP.
- Returns:
- the primeP
getPrimeQ
public abstract BigInteger getPrimeQ()
- Returns the primeQ.
- Returns:
- the primeQ
getPrimeExponentP
public abstract BigInteger getPrimeExponentP()
- Returns the primeExponentP.
- Returns:
- the primeExponentP
getPrimeExponentQ
public abstract BigInteger getPrimeExponentQ()
- Returns the primeExponentQ.
- Returns:
- the primeExponentQ
getCrtCoefficient
public abstract BigInteger getCrtCoefficient()
- Returns the crtCoefficient.
- Returns:
- the crtCoefficient
All Packages Class Hierarchy This Package Previous Next Index