KickJava   Java API By Example, From Geeks To Geeks.

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

java.security.spec
Class DSAPublicKeySpec

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

public DSAPublicKeySpec(BigInteger y,
                        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 getY()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags