public class DHGenParameterSpec extends Objectimplements AlgorithmParameterSpec
The central authority, after computing the parameters, must send this information to the parties looking to agree on a secret key.
DHParameterSpec
| Constructor and Description |
|---|
DHGenParameterSpec(int primeSize, int exponentSize)
Constructs a parameter set for the generation of Diffie-Hellman (system) parameters.
|
| Modifier and Type | Method and Description |
|---|---|
int |
getExponentSize()
Returns the size in bits of the random exponent (private value).
|
int |
getPrimeSize()
Returns the size in bits of the prime modulus.
|
public DHGenParameterSpec(int primeSize,
int exponentSize)
AlgorithmParameterGenerator object for the generation of Diffie-Hellman parameters.
primeSize - the size (in bits) of the prime modulus.
exponentSize - the size (in bits) of the random exponent.
public int getPrimeSize()
public int getExponentSize()