Added in API level 1
DSAParameterSpec
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:
Summary
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 constructors
DSAParameterSpec
Added in API level 1
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. |
Public methods
getG
Added in API level 1
public BigInteger getG ()
Returns the base g
.
Returns | |
---|---|
BigInteger | the base g . |
getP
Added in API level 1
public BigInteger getP ()
Returns the prime p
.
Returns | |
---|---|
BigInteger | the prime p . |
getQ
Added in API level 1
public BigInteger getQ ()
Returns the sub-prime q
.
Returns | |
---|---|
BigInteger | the sub-prime q . |