This interface defines methods for obtaining the DSA parameters g, p, and q. These methods are useful only if you wish to perform cryptographic computation yourself. Using these methods requires a detailed understanding of the mathematics underlying DSA public-key cryptography.
public interfaceDSAParams { // Public Instance Methods java.math.BigInteger
getG ( ); java.math.BigInteger
getP ( ); java.math.BigInteger
getQ ( ); }
java.security.spec.DSAParameterSpec
DSAKeyPairGenerator.initialize( )
DSAKey.getParams( )