public class DHGenParameterSpec extends Object implements 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()
Submit a bug or feature
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Copyright © 1993, 2023, Oracle and/or its affiliates. All rights reserved. Use is subject to license terms. Also see the documentation redistribution policy.