Top Description Methods
java.security.interfaces

public Interface DSAParams

extends AlgorithmParameterSpec
Known Direct Implementers
java.security.spec.DSAParameterSpec, sun.security.x509.AlgIdDSA
Imports
java.math.BigInteger, java.security.spec.AlgorithmParameterSpec

Interface to a DSA-specific set of key parameters, which defines a DSA key family. DSA (Digital Signature Algorithm) is defined in NIST's FIPS-186.
Authors
Benjamin Renaud, Josh Bloch
Since
1.1
See Also
DSAKey, java.security.Key, java.security.Signature

Method Summary

Modifier and TypeMethod and Description
public BigInteger

Returns:

the base, g.
getG
()

Returns the base, g.

public BigInteger

Returns:

the prime, p.
getP
()

Returns the prime, p.

public BigInteger

Returns:

the subprime, q.
getQ
()

Returns the subprime, q.

Method Detail

getGback to summary
public BigInteger getG()

Returns the base, g.

Returns:BigInteger

the base, g.

getPback to summary
public BigInteger getP()

Returns the prime, p.

Returns:BigInteger

the prime, p.

getQback to summary
public BigInteger getQ()

Returns the subprime, q.

Returns:BigInteger

the subprime, q.