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

Variable Index

 o ident

Method Index

 o getCrtCoefficient()
Returns the crtCoefficient.
 o getPrimeExponentP()
Returns the primeExponentP.
 o getPrimeExponentQ()
Returns the primeExponentQ.
 o getPrimeP()
Returns the prime P.
 o getPrimeQ()
Returns the prime Q.
 o getPublicExponent()
Returns the public exponent.

Variables

 o ident
 public static final String ident

Methods

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

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

Returns:
the prime P.
 o getPrimeQ
 public abstract BigInteger getPrimeQ()
Returns the prime Q.

Returns:
the prime Q.
 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