RosettaCodeData/Task/MD5/LiveCode/md5-1.livecode
2016-12-05 23:44:36 +01: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