public final class Sha512HMac extends HMac
An instance of this algorithm can be obtained using the Java Cryptography
Architecture (JCA), by requesting an 'HmacSHA512' MAC from the
Entrust cryptographic
service provider. This can be done using the following call:
Mac.getInstance("HmacSHA512", "Entrust");
HMac| Constructor and Description |
|---|
Sha512HMac()
The constructor; creates a new instance of the HmacSHA512 MAC algorithm.
|
engineDoFinal, engineGetMacLength, engineInit, engineReset, engineUpdate, engineUpdatepublic Sha512HMac()
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("HmacSHA512", "Entrust").