SHA1 SHA1(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" }