ElGamalParameterSpecpublic class ElGamalParameterSpec extends Object implements AlgorithmParameterSpec
Fields Summary |
---|
private BigInteger | p | private BigInteger | g |
Constructors Summary |
---|
public ElGamalParameterSpec(BigInteger p, BigInteger g)Constructs a parameter set for Diffie-Hellman, using a prime modulus
p and a base generator g .
this.p = p;
this.g = g;
|
|