Skip to content

llHMAC

Function Syntax
string llHMAC(
  1. string Key, // The PEM-formatted key for the hash digest.
  2. string Message, // The message to be hashed.
  3. string Algorithm // The digest algorithm: md5, sha1, sha224, sha256, sha384, sha512.
);

Returns the base64-encoded hashed message authentication code (HMAC), of Message using PEM-formatted Key and digest Algorithm (md5, sha1, sha224, sha256, sha384, sha512).