HMAC()
Creates a hash-based message authentication code (HMAC) for the given message combined with a given secret key using an optional algorithm and encoding.
HMACs are used to verify the data integrity and authenticity of a transmitted message.
The hash function used by the HMAC function depends on the algorithm specified.
HMAC( message=object, key=object, algorithm=string, encoding=string );
Returns: String
Examples
See also
- Cryptography
- Search Issue Tracker
- Search Lucee Test Cases (good for further, detailed examples)