| java.lang.Object com.sun.midp.crypto.RSAKey com.sun.midp.crypto.RSAPrivateKey
RSAPrivateKey | final public class RSAPrivateKey extends RSAKey implements PrivateKey(Code) | | Specifies the RSA private key interface. An RSA key is not ready for
us until both the modulus and exponent have been set.
|
Constructor Summary | |
public | RSAPrivateKey(byte[] modulus, byte[] exponent) Constructor for RSA public key. | public | RSAPrivateKey(byte[] modulus, int modOffset, int modLen, byte[] exponent, int expOffset, int expLen) Constructor for RSA public key. |
RSAPrivateKey | public RSAPrivateKey(byte[] modulus, byte[] exponent)(Code) | | Constructor for RSA public key.
Parameters: modulus - modulus of key to process Parameters: exponent - exponent the key |
RSAPrivateKey | public RSAPrivateKey(byte[] modulus, int modOffset, int modLen, byte[] exponent, int expOffset, int expLen)(Code) | | Constructor for RSA public key.
Parameters: modulus - modulus of key to process Parameters: modOffset - offset of the modulus Parameters: modLen - length of modulus in bytes Parameters: exponent - exponent the key Parameters: expOffset - offset of the exponent Parameters: expLen - length of the exponent in bytes |
|
|