Skip to content

Hash

Returns the hash of the given content.

1
$Crypto.Hash(content: string, hashName?: ( `"SHA1"` | `"SHA256"` | `"SHA384"` | `"SHA512"` )):string

Parameters

string content
    The content to be hashed.

( "SHA1" | "SHA256" | "SHA384" | "SHA512" ) hashName optional
    The name of the hash algorithm to be used. If not specified, SHA1 is used.

Returns

The hash of the given content in Base64 encoding.

Remarks

Hash a content with SHA1 algorithm

1
var hashedContent = $Crypto.Hash('data to be hashed','SHA1')