java.security.KeyPairGenerator#initialize(java.security.spec.AlgorithmParameterSpec)
Modifier and Type | Field and Description |
---|---|
public static final BigInteger | F0
The public-exponent value F0 = 3. |
public static final BigInteger | F4
The public exponent-value F4 = 65537. |
private final AlgorithmParameterSpec | |
private final int | |
private final BigInteger |
Access | Constructor and Description |
---|---|
public | RSAKeyGenParameterSpec(int
the modulus size (specified in number of bits) keysize, BigInteger the public exponent publicExponent)Constructs a new |
public | RSAKeyGenParameterSpec(int
the modulus size (specified in number of bits) keysize, BigInteger the public exponent publicExponent, AlgorithmParameterSpec the key parameters, may be null keyParams)Constructs a new |
Modifier and Type | Method and Description |
---|---|
public AlgorithmParameterSpec | Returns: the associated parameters, may be null if not presentReturns the parameters to be associated with key. |
public int | |
public BigInteger |
F0 | back to summary |
---|---|
public static final BigInteger F0 The public-exponent value F0 = 3. |
F4 | back to summary |
---|---|
public static final BigInteger F4 The public exponent-value F4 = 65537. |
keyParams | back to summary |
---|---|
private final AlgorithmParameterSpec keyParams |
keysize | back to summary |
---|---|
private final int keysize |
publicExponent | back to summary |
---|---|
private final BigInteger publicExponent |
RSAKeyGenParameterSpec | back to summary |
---|---|
public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent) Constructs a new
|
RSAKeyGenParameterSpec | back to summary |
---|---|
public RSAKeyGenParameterSpec(int keysize, BigInteger publicExponent, AlgorithmParameterSpec keyParams) Constructs a new
|
getKeyParams | back to summary |
---|---|
public AlgorithmParameterSpec getKeyParams() Returns the parameters to be associated with key.
|
getKeysize | back to summary |
---|---|
public int getKeysize() Returns the keysize.
|
getPublicExponent | back to summary |
---|---|
public BigInteger getPublicExponent() Returns the public-exponent value.
|