Page 1 of 1

Dictionary definition of md5Hash function

Posted: Fri Aug 16, 2013 6:49 pm
by lohill
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

Re: Dictionary definition of md5Hash function

Posted: Fri Aug 16, 2013 7:11 pm
by lohill
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