Name

Interface java.security.interfaces.RSAPrivateKey

Synopsis

RSAPrivateKey represents a private key, suitable for use with RSA cryptographic operations. Use of this class requires a third-party security provider.

Interface Definition

public abstract interface java.security.interfaces.RSAPrivateKey
	implements java.security.PrivateKey {

	// Instance Methods
	public abstract BigInteger getModulus();
	public abstract BigInteger getPrivateExponent();
}

See also:

PrivateKey, RSAPublicKey

Get Java Security 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.