RSAPrivateKeypublic final class RSAPrivateKey extends RSAKey implements PrivateKeySpecifies the RSA private key interface. An RSA key is not ready for
us until both the modulus and exponent have been set. |
Constructors Summary |
---|
public RSAPrivateKey(byte[] modulus, byte[] exponent)Constructor for RSA public key.
super(modulus, 0, modulus.length, exponent, 0, exponent.length);
| public RSAPrivateKey(byte[] modulus, int modOffset, int modLen, byte[] exponent, int expOffset, int expLen)Constructor for RSA public key.
super(modulus, modOffset, modLen, exponent, expOffset, expLen);
|
|