KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > java > security > spec > DSAPrivateKeySpec

java.security.spec
Class DSAPrivateKeySpec

java.lang.Object
  extended by java.security.spec.DSAPrivateKeySpec
All Implemented Interfaces:
KeySpec
See Also:
Top Examples, Source Code, Key, KeyFactory, DSAPublicKeySpec, PKCS8EncodedKeySpec

public DSAPrivateKeySpec(BigInteger x,
                         BigInteger p,
                         BigInteger q,
                         BigInteger g)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getG()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getP()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getQ()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public BigInteger getX()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags