| |
|
| java.lang.Object java.security.spec.RSAKeyGenParameterSpec
Field Summary | |
final public static BigInteger | F0 The public-exponent value F0 = 3. | final public static BigInteger | F4 The public exponent-value F4 = 65537. |
Constructor Summary | |
public | RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) Constructs a new RSAParameterSpec object from the
given keysize and public-exponent value. |
RSAKeyGenParameterSpec | public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent)(Code) | | Constructs a new RSAParameterSpec object from the
given keysize and public-exponent value.
Parameters: keysize - the modulus size (specified in number of bits) Parameters: publicExponent - the public exponent |
getKeysize | public int getKeysize()(Code) | | Returns the keysize.
the keysize. |
getPublicExponent | public BigInteger getPublicExponent()(Code) | | Returns the public-exponent value.
the public-exponent value. |
|
|
|