Name

Interface javax.crypto.interfaces.RSAPrivateKeyCrt

Description

This interface is an alternate representation of an RSA private key. It uses the Chinese Remainder Theorem (CRT) to represent the values of the private key.

Interface Definition

public abstract interface javax.crypto.interfaces.RSAPrivateKeyCrt
  implements javax.crypto.interfaces.RSAPrivateKey {

  // Instance Methods
  public abstract BigInteger getCrtCoefficient();
  public abstract BigInteger getPrimeExponentP();
  public abstract BigInteger getPrimeExponentQ();
  public abstract BigInteger getPrimeP();
  public abstract BigInteger getPrimeQ();
  public abstract BigInteger getPublicExponent();
}

See Also

PrivateKey, RSAPrivateKey, RSAPublicKey

Get Java Cryptography now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.