RosettaCodeData/Task/MD5/LiveCode/md5-1.livecode

7 lines
148 B
Plaintext

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