RosettaCodeData/Task/MD5/LiveCode/md5-1.livecode
2023-07-01 13:44:08 -04:00

6 lines
148 B
Text

function md5sum hashtext
local md5, mdhex
put md5Digest(hashtext) into md5
get binaryDecode("H*",md5,mdhex)
return mdhex
end md5sum