java.security.interfaces
Interface DSAParams

All Known Implementing Classes:
DSAParameterSpec

public interface DSAParams

Untamed: 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.

Version:
1.18 01/12/03
Author:
Benjamin Renaud, Josh Bloch
See Also:
DSAKey, java.security.Key, java.security.Signature

Method Summary
 BigInteger getG()
          Enabled: Returns the base, g.
 BigInteger getP()
          Enabled: Returns the prime, p.
 BigInteger getQ()
          Enabled: Returns the subprime, q.
 

Method Detail

getP

public BigInteger getP()
Enabled: Returns the prime, p.

Returns:
the prime, p.

getQ

public BigInteger getQ()
Enabled: Returns the subprime, q.

Returns:
the subprime, q.

getG

public BigInteger getG()
Enabled: Returns the base, g.

Returns:
the base, g.


comments?