public static final class FipsRSA.KeyGenParameters extends FipsParameters
| Constructor and Description |
|---|
FipsRSA.KeyGenParameters(java.math.BigInteger publicExponent,
int keySize)
Base constructor.
|
FipsRSA.KeyGenParameters(java.math.BigInteger publicExponent,
int keySize,
int certainty)
Base constructor with certainty.
|
FipsRSA.KeyGenParameters(FipsRSA.KTSParameters parameters,
java.math.BigInteger publicExponent,
int keySize)
Constructor for a key targeted to a specific KTS algorithm.
|
FipsRSA.KeyGenParameters(FipsRSA.SignatureParameters parameters,
java.math.BigInteger publicExponent,
int keySize)
Constructor for a key targeted to a specific signature algorithm.
|
FipsRSA.KeyGenParameters(FipsRSA.WrapParameters parameters,
java.math.BigInteger publicExponent,
int keySize)
Constructor for a key targeted to a specific wrap algorithm.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getCertainty() |
int |
getKeySize() |
java.math.BigInteger |
getPublicExponent() |
getAlgorithmpublic FipsRSA.KeyGenParameters(java.math.BigInteger publicExponent,
int keySize)
publicExponent - the public exponent to use.keySize - the key size (in bits).public FipsRSA.KeyGenParameters(java.math.BigInteger publicExponent,
int keySize,
int certainty)
publicExponent - the public exponent to use.keySize - the key size (in bits).certainty - certainty to use for prime number calculation.public FipsRSA.KeyGenParameters(FipsRSA.SignatureParameters parameters, java.math.BigInteger publicExponent, int keySize)
parameters - the signature parameter set containing the algorithm.publicExponent - the public exponent to use.keySize - the key size (in bits).public FipsRSA.KeyGenParameters(FipsRSA.WrapParameters parameters, java.math.BigInteger publicExponent, int keySize)
parameters - the wrap parameter set containing the algorithm.publicExponent - the public exponent to use.keySize - the key size (in bits).public FipsRSA.KeyGenParameters(FipsRSA.KTSParameters parameters, java.math.BigInteger publicExponent, int keySize)
parameters - the KTS parameter set containing the algorithm.publicExponent - the public exponent to use.keySize - the key size (in bits).