public final class RsaPssWithDigestSignature extends RsaPssSignature
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 'RSAPSS' digital signature from the
Entrust cryptographic
service provider. This can be done using the following call:
Signature.getInstance("RSAPSS", "Entrust");
| Constructor and Description |
|---|
RsaPssWithDigestSignature()
The constructor; creates a new instance of the RSAPSS digital signature
algorithm.
|
assertParametersValid, generateDefaultParameters, toAlgorithmParametersgetDigitalSignatureImplengineGetParameter, engineGetParameters, engineInitSign, engineInitSign, engineInitVerify, engineSetParameter, engineSetParameter, engineSign, engineSign, engineUpdate, engineUpdate, engineVerify, engineVerify, getDigest, getPrngpublic RsaPssWithDigestSignature()
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("RSAPSS", "Entrust")