Name
MD5Str -- calculate MD5 checksum of string (V5.0)
Synopsis
sum$ = MD5Str(s$)
Function
This function calculates the MD5 checksum of the string specified in s$ and returns it. The 128-bit checksum is returned as a string containing 16 hex digits. Note that Hollywood strings can also contain binary data so that you can also use this function with non-text strings.

If you want to compute the MD5 checksum of a file, use the MD5() function instead.

Inputs
s$
string whose checksum you want to have calculated
Results
sum$
MD5 checksum of string

Show TOC