Difference between revisions of "Cryptography.md5"
From GiderosMobile
Line 2: | Line 2: | ||
'''Available since:''' Gideros 2016.04<br/> | '''Available since:''' Gideros 2016.04<br/> | ||
=== Description === | === Description === | ||
− | Compute the MD5 hash of the input string | + | <translate>Compute the MD5 hash of the input string</translate> |
<source lang="lua"> | <source lang="lua"> | ||
(string) = Cryptography.md5(input) | (string) = Cryptography.md5(input) | ||
</source> | </source> | ||
=== Parameters === | === Parameters === | ||
− | '''input''': (string) String whose content is to be hashed <br/> | + | '''input''': (string) <translate>String whose content is to be hashed</translate> <br/> |
=== Return values === | === Return values === | ||
− | '''Returns''' (string) MD5 hash (a 16 byte string)<br/> | + | '''Returns''' (string) <translate>MD5 hash (a 16 byte string)</translate><br/> |
Revision as of 13:34, 23 August 2018
Available since: Gideros 2016.04
Description
Compute the MD5 hash of the input string
(string) = Cryptography.md5(input)
Parameters
input: (string) String whose content is to be hashed
Return values
Returns (string) MD5 hash (a 16 byte string)