Copy as Markdown View as Markdown (opens in new tab) View on GitHub (opens in new tab) Open in... ChatGPT (opens in new tab) Claude (opens in new tab) Perplexity (opens in new tab) SHA1 SHA1(content: Binary): String Computes the SHA1 hash and transforms the result into a hexadecimal, lowercase string. Parameters Name Description content A binary input value to encrypt. Example This example uses the SHA1 algorithm to encrypt a binary value. Source %dw 2.0 import dw::Crypto output application/json --- { "sha1" : Crypto::SHA1("dsasd" as Binary) } Output { "sha1": "2fa183839c954e6366c206367c9be5864e4f4a65" }