java.security.interfaces

Interface RSAPrivateCrtKey

public interface RSAPrivateCrtKey extends RSAPrivateKey

This interface provides access to information about an RSA private key in Chinese Remainder Theorem (CRT) format.
Field Summary
longserialVersionUID
Method Summary
BigIntegergetCrtCoefficient()
Returns the CRT coefficient
BigIntegergetPrimeExponentP()
Returns the primeExponentP
BigIntegergetPrimeExponentQ()
Returns the primeExponentQ
BigIntegergetPrimeP()
Returns the primeP value
BigIntegergetPrimeQ()
Returns the primeQ value
BigIntegergetPublicExponent()
Returns the public exponent for this key

Field Detail

serialVersionUID

public long serialVersionUID

Method Detail

getCrtCoefficient

public BigInteger getCrtCoefficient()
Returns the CRT coefficient

Returns: The CRT coefficient

getPrimeExponentP

public BigInteger getPrimeExponentP()
Returns the primeExponentP

Returns: The primeExponentP

getPrimeExponentQ

public BigInteger getPrimeExponentQ()
Returns the primeExponentQ

Returns: The primeExponentQ

getPrimeP

public BigInteger getPrimeP()
Returns the primeP value

Returns: The primeP value

getPrimeQ

public BigInteger getPrimeQ()
Returns the primeQ value

Returns: The primeQ value

getPublicExponent

public BigInteger getPublicExponent()
Returns the public exponent for this key

Returns: The public exponent for this key