Skip to main content

http.hash.hmacsha512(dataToHash, key)

Performs an HMAC-SHA-512 hash function

Availability

Agent

Parameters

Name Type Description
dataToHash String or blob The data to which the hash function will be applied
key String or blob The hash key

Returns

Blob — the hashed data (64 bytes)

Description

This method performs an HMAC-SHA512 hash using the input data and key. Because the returned data is a blob, it is not uncommon to Base64 encode it.

Example Code

A simple example of HMAC-SHA-512 hashing.