DSAParameterSpecpublic class DSAParameterSpec extends Object implements AlgorithmParameterSpec, DSAParamsThis class specifies the set of parameters used with the DSA algorithm. |
Fields Summary |
---|
BigInteger | p | BigInteger | q | BigInteger | g |
Constructors Summary |
---|
public DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)Creates a new DSAParameterSpec with the specified parameter values.
this.p = p;
this.q = q;
this.g = g;
|
|