Package java.security.interfaces
Interface DSAParams
- All Known Implementing Classes:
DSAParameterSpec,OpenSSLDSAParams
public interface DSAParams
The interface for Digital Signature Algorithm (DSA) specific parameters.
-
Method Summary
Modifier and Type Method Description BigIntegergetG()Returns the base (g) value.BigIntegergetP()Returns the prime (p) value.BigIntegergetQ()Returns the subprime (qvalue.
-
Method Details
-
getG
BigInteger getG()Returns the base (g) value.- Returns:
- the base (
g) value.
-
getP
BigInteger getP()Returns the prime (p) value.- Returns:
- the prime (
p) value.
-
getQ
BigInteger getQ()Returns the subprime (qvalue.- Returns:
- the subprime (
qvalue.
-