7 lines
148 B
Text
7 lines
148 B
Text
|
|
function md5sum hashtext
|
||
|
|
local md5, mdhex
|
||
|
|
put md5Digest(hashtext) into md5
|
||
|
|
get binaryDecode("H*",md5,mdhex)
|
||
|
|
return mdhex
|
||
|
|
end md5sum
|