Name

Class java.security.spec.RSAPrivateCrtKeySpec

Synopsis

This class represents the algorithm parameters for an RSA private key that uses the Chinese Remainder Theorem to calculate its value.

Class Definition

public class java.security.spec.RSAPrivateCrtKeySpec
    extends java.security.spec.RSAPrivateKeySpec {

    // Constructors
    public RSAPrivateCrtKeySpec(BigInteger, BigInteger, BigInteger,
                     BigInteger, BigInteger, BigInteger,
                     BigInteger, BigInteger);

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

Get Java Security, 2nd Edition 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.