diff --git a/functions/strings.xml b/functions/strings.xml index 825e1edfa3..e36ef1eb0b 100644 --- a/functions/strings.xml +++ b/functions/strings.xml @@ -1,5 +1,5 @@ - + String functions Strings @@ -1539,7 +1539,36 @@ $clean = ltrim($binary,"\0x00..\0x1F"); The hash is a 32-character hexadecimal number. - See also crc32. + See also: crc32 and md5_file + + + + + + + md5_file + Calculates the md5 hash of a given filename + + + Description + + + string md5_file + string filename + + + + Calculates the MD5 hash of the specified + filename using the + RSA Data Security, Inc. + MD5 Message-Digest Algorithm, and returns that hash. + + + This function has the same purpose of the command line utility + md5sum. + + + See also: md5 and crc32