public final class DsaWithSha224Signature extends DsaSignature
This implementation calculates the hash internally, thus it is the message
itself (being signed or verified) that is passed in through the
update() API.
An instance of this algorithm can be obtained using the Java Cryptography
Architecture (JCA), by requesting a 'SHA224withDSA' digital signature from
the Entrust
cryptographic service provider. This can be done using the following call:
Signature.getInstance("SHA224withDSA", "Entrust");DsaSignature| Constructor and Description |
|---|
DsaWithSha224Signature()
The constructor; creates a new instance of the SHA224withDSA digital
signature algorithm.
|
getDigitalSignatureImplassertParametersValid, engineGetParameter, engineGetParameters, engineInitSign, engineInitSign, engineInitVerify, engineSetParameter, engineSetParameter, engineSign, engineSign, engineUpdate, engineUpdate, engineVerify, engineVerify, generateDefaultParameters, getDigest, getPrng, toAlgorithmParameterspublic DsaWithSha224Signature()
Applications should not use this constructor, instead the signature
algorithm should be requested from the appropriate JCA/JCE cryptographic
service provider as follows:
Signature.getInstance("SHA224withDSA", "Entrust").