apoc.util.md5

Details

Syntax

apoc.util.md5(values)

Description

Returns the MD5 checksum of the concatenation of all STRING values in the given LIST<ANY>. MD5 is a weak hashing algorithm which is unsuitable for cryptographic use-cases.

Arguments

Name

Type

Description

values

LIST<ANY>

The list of values to concatenate and generate an md5 checksum from.

Returns

STRING

Usage Examples

RETURN apoc.util.md5(["Michael"]) AS output;
Results
output

"3e06fa3927cbdf4e9d93ba4541acce86"