Where is the dictionary definition of md5Hash(). I don't see it but I can put the following in Message box and get a result.
put md5Hash("testing")
I do see md5Digest but that is not what I want.
Thanks,
Larry
Dictionary definition of md5Hash function
Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller
Re: Dictionary definition of md5Hash function
oops! Sorry - it was my function which I had forgotten that I defined.
Code: Select all
function MD5Hash pvalue
local tRes
put md5Digest(pValue) into tMD5
get binaryDecode("H*",tMD5,tRes)
return tRes
end MD5Hash