Name

Interface java.security.interfaces.RSAPrivateCrtKey

Synopsis

A class that implements this interface represents an RSA private key that uses the Chinese Remainder Theorem to calculate its value.

Class Definition

public interface java.security.interfaces.RSAPrivateCrtKey
    implements java.security.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(  );
}

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.