Home » openjdk-7 » java » security » interfaces » [javadoc | source]
java.security.interfaces
public interface: DSAParams [javadoc | source]

All Known Implementing Classes:
    DSAParameterSpec

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.
Method from java.security.interfaces.DSAParams Summary:
getG,   getP,   getQ
Method from java.security.interfaces.DSAParams Detail:
 public BigInteger getG()
    Returns the base, g.
 public BigInteger getP()
    Returns the prime, p.
 public BigInteger getQ()
    Returns the subprime, q.