INTEGRITY Cloudflare Docs

Hashing functions

Cloudflare Pipelines scalar function implementations are based on Apache DataFusion (via Arroyo) and these docs are derived from the DataFusion function reference.

digest

Computes the binary hash of an expression using the specified algorithm.

digest(expression, algorithm)

Arguments

md5

Computes an MD5 128-bit checksum for a string expression.

md5(expression)

Arguments

sha224

Computes the SHA-224 hash of a binary string.

sha224(expression)

Arguments

sha256

Computes the SHA-256 hash of a binary string.

sha256(expression)

Arguments

sha384

Computes the SHA-384 hash of a binary string.

sha384(expression)

Arguments

sha512

Computes the SHA-512 hash of a binary string.

sha512(expression)

Arguments