Package org.bouncycastle.crypto.fips
Class FipsDSA.Parameters
- java.lang.Object
-
- org.bouncycastle.crypto.fips.FipsParameters
-
- org.bouncycastle.crypto.fips.FipsDSA.Parameters
-
- All Implemented Interfaces:
Parameters
- Enclosing class:
- FipsDSA
public static final class FipsDSA.Parameters extends FipsParameters
Parameters for DSA signatures.
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FipsDigestAlgorithm
getDigestAlgorithm()
Return the algorithm for the underlying digest these parameters will use.FipsDSA.Parameters
withDigestAlgorithm(FipsDigestAlgorithm digestAlgorithm)
Return a new parameter set with for the passed in digest algorithm.-
Methods inherited from class org.bouncycastle.crypto.fips.FipsParameters
getAlgorithm
-
-
-
-
Method Detail
-
getDigestAlgorithm
public FipsDigestAlgorithm getDigestAlgorithm()
Return the algorithm for the underlying digest these parameters will use.- Returns:
- the digest algorithm
-
withDigestAlgorithm
public FipsDSA.Parameters withDigestAlgorithm(FipsDigestAlgorithm digestAlgorithm)
Return a new parameter set with for the passed in digest algorithm.- Parameters:
digestAlgorithm
- the digest to use for signature generation.- Returns:
- a new parameter for signature generation.
-
-