Most visited

Recently visited

Added in API level 1

RSAPrivateKeySpec

public class RSAPrivateKeySpec
extends Object implements KeySpec

java.lang.Object
   ↳ java.security.spec.RSAPrivateKeySpec
Known Direct Subclasses


This class specifies an RSA private key.

See also:

Summary

Public constructors

RSAPrivateKeySpec(BigInteger modulus, BigInteger privateExponent)

Creates a new RSAPrivateKeySpec.

Public methods

BigInteger getModulus()

Returns the modulus.

BigInteger getPrivateExponent()

Returns the private exponent.

Inherited methods

From class java.lang.Object

Public constructors

RSAPrivateKeySpec

Added in API level 1
RSAPrivateKeySpec (BigInteger modulus, 
                BigInteger privateExponent)

Creates a new RSAPrivateKeySpec.

Parameters
modulus BigInteger: the modulus
privateExponent BigInteger: the private exponent

Public methods

getModulus

Added in API level 1
BigInteger getModulus ()

Returns the modulus.

Returns
BigInteger the modulus

getPrivateExponent

Added in API level 1
BigInteger getPrivateExponent ()

Returns the private exponent.

Returns
BigInteger the private exponent

Hooray!