java.lang.Object | +--java.security.spec.DSAPrivateKeySpec
Safe: This class specifies a DSA private key with its associated parameters.
java.security.Key
,
java.security.KeyFactory
,
KeySpec
,
DSAPublicKeySpec
,
PKCS8EncodedKeySpec
DSAPrivateKeySpec(BigInteger x,
BigInteger p,
BigInteger q,
BigInteger g)
private BigInteger x
private BigInteger p
private BigInteger q
private BigInteger g
public DSAPrivateKeySpec(BigInteger x, BigInteger p, BigInteger q, BigInteger g)
x
- the private key.p
- the prime.q
- the sub-prime.g
- the base.public BigInteger getX()
x
.
x
.public BigInteger getP()
p
.
p
.public BigInteger getQ()
q
.
q
.public BigInteger getG()
g
.
g
.public Object[] __optUncall()