java.security.spec
public class DSAParameterSpec extends Object implements AlgorithmParameterSpec, DSAParams
Since: 1.2
| Constructor Summary | |
|---|---|
| DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)
Constructs a new DSAParameterSpec with the specified p, q, and g.
| |
| Method Summary | |
|---|---|
| BigInteger | getG()
Returns g for the DSA algorithm.
|
| BigInteger | getP()
Returns p for the DSA algorithm.
|
| BigInteger | getQ()
Returns p for the DSA algorithm.
|
Parameters: p the prime q the sub-prime g the base
Returns: Returns the requested BigInteger
Returns: Returns the requested BigInteger
Returns: Returns the requested BigInteger