Most visited

Recently visited

Added in API level 1

RSAPublicKeySpec

public class RSAPublicKeySpec
extends Object implements KeySpec

java.lang.Object
   ↳ java.security.spec.RSAPublicKeySpec


This class specifies an RSA public key.

See also:

Summary

Public constructors

RSAPublicKeySpec(BigInteger modulus, BigInteger publicExponent)

Creates a new RSAPublicKeySpec.

Public methods

BigInteger getModulus()

Returns the modulus.

BigInteger getPublicExponent()

Returns the public exponent.

Inherited methods

From class java.lang.Object

Public constructors

RSAPublicKeySpec

Added in API level 1
RSAPublicKeySpec (BigInteger modulus, 
                BigInteger publicExponent)

Creates a new RSAPublicKeySpec.

Parameters
modulus BigInteger: the modulus
publicExponent BigInteger: the public exponent

Public methods

getModulus

Added in API level 1
BigInteger getModulus ()

Returns the modulus.

Returns
BigInteger the modulus

getPublicExponent

Added in API level 1
BigInteger getPublicExponent ()

Returns the public exponent.

Returns
BigInteger the public exponent

Hooray!