# Print output for @column tags ?>
public
class
DSAPublicKeySpec
extends Object
implements
KeySpec
java.lang.Object | |
↳ | java.security.spec.DSAPublicKeySpec |
This class specifies a DSA public key with its associated parameters.
Public constructors | |
---|---|
DSAPublicKeySpec(BigInteger y, BigInteger p, BigInteger q, BigInteger g)
Creates a new DSAPublicKeySpec with the specified parameter values. |
Public methods | |
---|---|
BigInteger
|
getG()
Returns the base |
BigInteger
|
getP()
Returns the prime |
BigInteger
|
getQ()
Returns the sub-prime |
BigInteger
|
getY()
Returns the public key |
Inherited methods | |
---|---|
public DSAPublicKeySpec (BigInteger y, BigInteger p, BigInteger q, BigInteger g)
Creates a new DSAPublicKeySpec with the specified parameter values.
Parameters | |
---|---|
y |
BigInteger : the public key. |
p |
BigInteger : the prime. |
q |
BigInteger : the sub-prime. |
g |
BigInteger : the base. |