java.security.Key
, java.security.KeyFactory
, KeySpec
, DSAPrivateKeySpec
, X509EncodedKeySpec
Modifier and Type | Field and Description |
---|---|
private final BigInteger | |
private final BigInteger | |
private final BigInteger | |
private final BigInteger |
Access | Constructor and Description |
---|---|
public | DSAPublicKeySpec(BigInteger
the public key. y, BigInteger the prime. p, BigInteger the sub-prime. q, BigInteger the base. g)Creates a new DSAPublicKeySpec with the specified parameter values. |
Modifier and Type | Method and Description |
---|---|
public BigInteger | |
public BigInteger | |
public BigInteger | |
public BigInteger |
g | back to summary |
---|---|
private final BigInteger g |
p | back to summary |
---|---|
private final BigInteger p |
q | back to summary |
---|---|
private final BigInteger q |
y | back to summary |
---|---|
private final BigInteger y |
DSAPublicKeySpec | back to summary |
---|---|
public DSAPublicKeySpec(BigInteger y, BigInteger p, BigInteger q, BigInteger g) Creates a new DSAPublicKeySpec with the specified parameter values.
|
getG | back to summary |
---|---|
public BigInteger getG() Returns the base
|
getP | back to summary |
---|---|
public BigInteger getP() Returns the prime
|
getQ | back to summary |
---|---|
public BigInteger getQ() Returns the sub-prime
|
getY | back to summary |
---|---|
public BigInteger getY() Returns the public key
|