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.
Usage Examples
RETURN apoc.util.md5(["Michael"]) AS output;
output |
---|
"3e06fa3927cbdf4e9d93ba4541acce86" |
Was this page helpful?