java.security.interfaces
Interface DSAParams

All Known Implementing Classes:
DSAParameterSpec

public interface DSAParams

This interface allows the Digital Signature Algorithm (DSA) parameters to be queried.


Method Summary
 BigInteger getG()
          Returns the base, or 'g' value
 BigInteger getP()
          Returns the prime, or 'p' value
 BigInteger getQ()
          Returns the subprime, or 'q' value
 

Method Detail

getG

BigInteger getG()
Returns the base, or 'g' value

Returns:
The DSA base value

getP

BigInteger getP()
Returns the prime, or 'p' value

Returns:
The DSA prime value

getQ

BigInteger getQ()
Returns the subprime, or 'q' value

Returns:
The DSA subprime value