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 | |
|---|---|
java.lang.Object
| |
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.
|
BigInteger getQ ()
Returns the sub-prime q.
| Returns | |
|---|---|
BigInteger |
the sub-prime q.
|
BigInteger getY ()
Returns the public key y.
| Returns | |
|---|---|
BigInteger |
the public key y.
|