java.security.interfaces

Interface DSAParams

public interface DSAParams

This interface allows the Digital Signature Algorithm (DSA) parameters to be queried.
Method Summary
BigIntegergetG()
Returns the base, or 'g' value
BigIntegergetP()
Returns the prime, or 'p' value
BigIntegergetQ()
Returns the subprime, or 'q' value

Method Detail

getG

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

Returns: The DSA base value

getP

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

Returns: The DSA prime value

getQ

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

Returns: The DSA subprime value