apoc.util.md5

Function

apoc.util.md5(values LIST<ANY>) - 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.

Signature

apoc.util.md5(values :: LIST<ANY>) :: STRING

Input parameters

Name Type Default

values

LIST<ANY>

null

Usage Examples

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

"3e06fa3927cbdf4e9d93ba4541acce86"