DSAParams | java.security.interfaces |
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 interface DSAParams {
// Public Instance Methods
java.math.BigInteger getG( );
java.math.BigInteger getP( );
java.math.BigInteger getQ( );
}
Implementations
java.security.spec.DSAParameterSpec
Passed To
DSAKeyPairGenerator.initialize( )
Returned By
DSAKey.getParams( )
|