HMACSHA256 Function: Difference between revisions
From Planfix
(Created page with "{{#seo: |title=HMACSHA256 Function |titlemode=append |keywords=planfix, Function, HMACSHA256 |description=HMACSHA256 Function }} 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 MD5 algorithm. This function is used when integrating APIs from various services into Planfix. ==Format== '''HMACSHA256'''(value; key)` ==Example== HMACMD5("Hello, world!"; "secret12...") |
No edit summary |
||
Line 5: | Line 5: | ||
|description=HMACSHA256 Function | |description=HMACSHA256 Function | ||
}} | }} | ||
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 | 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== | ==Format== | ||
'''HMACSHA256'''(value; key)` | '''HMACSHA256'''(value; key)` |
Latest revision as of 11:14, 8 November 2024
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`