May 1998
Intermediate to advanced
469 pages
14h 57m
English
Class java.security.spec.RSAPrivateKeySpec
This class represents a key specification for an RSA private key; this specification uses a modulus and a private exponent. Instances of this class may be used with an appropriate key factory to generate private keys. Use of this class requires a third-party security provider.
public java.security.spec.RSAPrivateKeySpec
extends java.lang.Object
implements java.security.spec.KeySpec {
// Constructors
public RSAPrivateKeySpec(BigInteger, BigInteger);
// Instance Methods
public BigInteger getModulus();
public BigInteger getPrivateExponent();
}
KeyFactory, KeySpec, PrivateKey