Package java.security.interfaces
Interface DSAParams
-
- All Known Implementing Classes:
DSAParameterSpec
public interface DSAParamsThe interface for Digital Signature Algorithm (DSA) specific parameters.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description BigIntegergetG()Returns the base (g) value.BigIntegergetP()Returns the prime (p) value.BigIntegergetQ()Returns the subprime (q) value.
-
-
-
Method Detail
-
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 (q) value.- Returns:
- the subprime (
q) value.
-
-