All Packages Class Hierarchy This Package Previous Next Index
Interface javax.crypto.interfaces.RSAPrivateKeyCrt
- public interface RSAPrivateKeyCrt
- extends PrivateKey
The interface to an RSA private key, using the
Chinese Remainder Theorem (CRT) representation.
- See Also:
- RSAPrivateKey
-
getCrtCoefficient()
- Returns the crtCoefficient.
-
getModulus()
- Returns the modulus.
-
getPrimeExponentP()
- Returns the primeExponentP.
-
getPrimeExponentQ()
- Returns the primeExponentQ.
-
getPrimeP()
- Returns the primeP.
-
getPrimeQ()
- Returns the primeQ.
-
getPrivateExponent()
- Returns the private exponent.
-
getPublicExponent()
- Returns the public exponent.
getModulus
public abstract BigInteger getModulus()
- Returns the modulus.
- Returns:
- the modulus
getPublicExponent
public abstract BigInteger getPublicExponent()
- Returns the public exponent.
- Returns:
- the public exponent
getPrivateExponent
public abstract BigInteger getPrivateExponent()
- Returns the private exponent.
- Returns:
- the private 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