public final class Md5HMac extends HMac
An instance of this algorithm can be obtained using the Java Cryptography
Architecture (JCA), by requesting an 'HmacMD5' MAC from the
Entrust cryptographic
service provider. This can be done using the following call:
Mac.getInstance("HmacMD5", "Entrust");
Note: This algorithm provides only a software-based implementation; it does not provide a PKCS11-based implementation.
HMac| Constructor and Description |
|---|
Md5HMac()
The constructor; creates a new instance of the HmacMD5 MAC algorithm.
|
engineDoFinal, engineGetMacLength, engineInit, engineReset, engineUpdate, engineUpdatepublic Md5HMac()
Applications should never use this constructor, instead the MAC algorithm
should be requested from the appropriate JCA/JCE cryptographic service
provider as follows: Mac.getInstance("HmacMD5", "Entrust").