HMACSHA256 Function

From Planfix
Revision as of 11:14, 8 November 2024 by Dmitri (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to: navigation, search

The HMACSHA256() function accepts messages of any length along with a specific secret key and then calculates a unique digital fingerprint of the message using the SHA-256 algorithm. This function is used when integrating APIs from various services into Planfix.

Format

HMACSHA256(value; key)`

Example

HMACMD5("Hello, world!"; "secret123")`

Result: fa5f5d4bc7d8f9e8248b909af324d7e3`


Go To