# Print output for @column tags ?>
public
class
DSAParameterSpec
extends Object
implements
AlgorithmParameterSpec,
DSAParams
| java.lang.Object | |
| ↳ | java.security.spec.DSAParameterSpec |
This class specifies the set of parameters used with the DSA algorithm.
See also:
Public constructors | |
|---|---|
DSAParameterSpec(BigInteger p, BigInteger q, BigInteger g)
Creates a new DSAParameterSpec with the specified parameter values. |
|
Public methods | |
|---|---|
BigInteger
|
getG()
Returns the base |
BigInteger
|
getP()
Returns the prime |
BigInteger
|
getQ()
Returns the sub-prime |
Inherited methods | |
|---|---|
public DSAParameterSpec (BigInteger p, BigInteger q, BigInteger g)
Creates a new DSAParameterSpec with the specified parameter values.
| Parameters | |
|---|---|
p |
BigInteger: the prime. |
q |
BigInteger: the sub-prime. |
g |
BigInteger: the base. |