DSAParameterSpecpublic class DSAParameterSpec extends Object implements DSAParams, AlgorithmParameterSpecThe parameter specification used with the Digital Signature Algorithm (DSA). |
Fields Summary |
---|
private final BigInteger | p | private final BigInteger | q | private final BigInteger | g |
Constructors Summary |
---|
public DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)Creates a new {@code DSAParameterSpec} with the specified prime {@code p},
sub-prime {@code q} and the base {@code g}.
this.p = p;
this.q = q;
this.g = g;
|
|