apoc.util.md5

Function

apoc.util.md5(values [Any]) - returns the MD5 checksum of the concatenation of all string values in the given list. MD5 is a weak hashing algorithm which is unsuitable for cryptographic use-cases.

Signature

apoc.util.md5(values :: LIST? OF ANY?) :: (STRING?)

Input parameters

Name Type Default

values

LIST? OF ANY?

null

Usage Examples

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

"3e06fa3927cbdf4e9d93ba4541acce86"