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