Package org.bouncycastle.crypto.params
Class DSAParameters
- java.lang.Object
-
- org.bouncycastle.crypto.params.DSAParameters
-
- All Implemented Interfaces:
CipherParameters
public class DSAParameters extends Object implements CipherParameters
-
-
Constructor Summary
Constructors Constructor Description DSAParameters(BigInteger p, BigInteger q, BigInteger g)
DSAParameters(BigInteger p, BigInteger q, BigInteger g, DSAValidationParameters params)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object obj)
BigInteger
getG()
BigInteger
getP()
BigInteger
getQ()
DSAValidationParameters
getValidationParameters()
int
hashCode()
-
-
-
Constructor Detail
-
DSAParameters
public DSAParameters(BigInteger p, BigInteger q, BigInteger g)
-
DSAParameters
public DSAParameters(BigInteger p, BigInteger q, BigInteger g, DSAValidationParameters params)
-
-
Method Detail
-
getP
public BigInteger getP()
-
getQ
public BigInteger getQ()
-
getG
public BigInteger getG()
-
getValidationParameters
public DSAValidationParameters getValidationParameters()
-
-