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 | |
---|---|
From
class
java.lang.Object
| |
From
interface
java.security.interfaces.DSAParams
|
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.
|
BigInteger getQ ()
Returns the sub-prime q
.
Returns | |
---|---|
BigInteger |
the sub-prime q .
|