Dictionary definition of md5Hash function

LiveCode is the premier environment for creating multi-platform solutions for all major operating systems - Windows, Mac OS X, Linux, the Web, Server environments and Mobile platforms. Brand new to LiveCode? Welcome!

Moderators: FourthWorld, heatherlaine, Klaus, kevinmiller, robinmiller

Post Reply
lohill
Posts: 770
Joined: Tue Dec 08, 2009 6:37 pm

Dictionary definition of md5Hash function

Post by lohill » Fri Aug 16, 2013 6:49 pm

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

lohill
Posts: 770
Joined: Tue Dec 08, 2009 6:37 pm

Re: Dictionary definition of md5Hash function

Post by lohill » Fri Aug 16, 2013 7:11 pm

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 

Post Reply