Difference between revisions of "Cryptography.md5"

From GiderosMobile
(Created page with "__NOTOC__ '''Available since:''' Gideros 2016.04<br/> === Description === Compute the MD5 hash of the input string <source lang="lua"> (string), = Cryptography.md5(input,) </s...")
 
Line 4: Line 4:
 
Compute the MD5 hash of the input string
 
Compute the MD5 hash of the input string
 
<source lang="lua">
 
<source lang="lua">
(string), = Cryptography.md5(input,)
+
(string) = Cryptography.md5(input)
 
</source>
 
</source>
'''input:''' (string) String whose content is to be hashed ''''''<br/>
+
'''input''': (string) String whose content is to be hashed ''''''<br/>
 
'''Returns''' (string) MD5 hash (a 16 byte string)<br/>
 
'''Returns''' (string) MD5 hash (a 16 byte string)<br/>

Revision as of 11:20, 23 August 2018

Available since: Gideros 2016.04

Description

Compute the MD5 hash of the input string

(string) = Cryptography.md5(input)

'input: (string) String whose content is to be hashed '
Returns (string) MD5 hash (a 16 byte string)