All Packages Class Hierarchy This Package Previous Next Index
Interface au.net.aba.security.interfaces.RSAPrivateCrtKey
- public interface RSAPrivateCrtKey
- extends RSAPrivateKey
The interface to an RSA private key, using the Chinese
Remainder Theorem (CRT) representation.
- See Also:
- RSAPrivateKey
-
ident
-
-
getCrtCoefficient()
- Returns the crtCoefficient.
-
getPrimeExponentP()
- Returns the primeExponentP.
-
getPrimeExponentQ()
- Returns the primeExponentQ.
-
getPrimeP()
- Returns the prime P.
-
getPrimeQ()
- Returns the prime Q.
-
getPublicExponent()
- Returns the public exponent.
ident
public static final String ident
getPublicExponent
public abstract BigInteger getPublicExponent()
- Returns the public exponent.
- Returns:
- the public exponent.
getPrimeP
public abstract BigInteger getPrimeP()
- Returns the prime P.
- Returns:
- the prime P.
getPrimeQ
public abstract BigInteger getPrimeQ()
- Returns the prime Q.
- Returns:
- the prime Q.
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