HASH.MD5
calculates a MD5 message digest based on a provided string. It throws an error if this function is passed an argument that is not a string.
Function category: HASH​
HASH.MD5(arg)
Arguments | Definition |
| A string to be transformed. |
Let's say we have the following HASH function:
# Encrypt a stringHASH.MD5('secret-phrase')
This returns the following MD5 digest:
377ab0e21c117fff372783626b2a7d4b
Note:
The HASH.SHA1
, HASH.SHA256
, HASH.SHA384
, and HASH.SHA512
are supported.