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