DSAPublicKeySpec
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.
Summary
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 constructors
DSAPublicKeySpec
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. |
Public methods
getG
public BigInteger getG ()
Returns the base g.
| Returns | |
|---|---|
BigInteger | the base g. |
getP
public BigInteger getP ()
Returns the prime p.
| Returns | |
|---|---|
BigInteger | the prime p. |
getQ
public BigInteger getQ ()
Returns the sub-prime q.
| Returns | |
|---|---|
BigInteger | the sub-prime q. |
getY
public BigInteger getY ()
Returns the public key y.
| Returns | |
|---|---|
BigInteger | the public key y. |