HMACMD5 Function: Difference between revisions

From Planfix
Jump to: navigation, search
(Created page with "{{#seo: |title=HMACMD5 Function |titlemode=append |keywords=planfix, Function, HMACMD5 |description=HMACMD5 Function }} The HMACMD5() 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 '''HMACMD5'''(value; key)` ==Example== HMACMD5("Hello, world!"; "secret123")` **Result**:...")
 
No edit summary
 
(One intermediate revision by the same user not shown)
Line 6: Line 6:
}}
}}
The HMACMD5() 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.
The HMACMD5() 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
==Format==
'''HMACMD5'''(value; key)`
'''HMACMD5'''(value; key)`
==Example==
==Example==
HMACMD5("Hello, world!"; "secret123")`
HMACMD5("Hello, world!"; "secret123")`


**Result**: fa5f5d4bc7d8f9e8248b909af324d7e3`
Result: fa5f5d4bc7d8f9e8248b909af324d7e3`
 


==Go To==
==Go To==

Latest revision as of 10:53, 8 November 2024

The HMACMD5() 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

HMACMD5(value; key)`

Example

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

Result: fa5f5d4bc7d8f9e8248b909af324d7e3`

Go To