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) MD5 MD5(content: Binary): String Computes the MD5 hash and transforms the binary result into a hexadecimal lower case string. Parameters Name Description content A binary input value to encrypt. Example This example uses the MD5 algorithm to encrypt a binary value. Source %dw 2.0 import dw::Crypto output application/json --- { "md5" : Crypto::MD5("asd" as Binary) } Output { "md5": "7815696ecbf1c96e6894b779456d330e" }