HASH.SHA384
calculates a SHA384 message digest based on a provided string. This function throws an error if it passed an argument that isn't a string.
Function category: Hash​
HASH.SHA384(arg)
Arguments | Definition |
| A string to be transformed |
Let's say we have the following HASH.SHA384
function that includes a string:
# Encrypt a stringHASH.SHA384('secret-phrase')
This returns the following SHA384
digest:
95c29030877705c83dfc442d5024d9dd0a4538c4de3bc7532b09f3b4b6e895cca873cca9d94f9230088c2402cfdc382e
Note:
HASH.MD5
,HASH.SHA1
,HASH.SHA256
, and HASH.SHA512
are also supported.