Difference between revisions of "Cryptography.md5"
From GiderosMobile
(----) |
|||
Line 1: | Line 1: | ||
− | + | '''Available since:''' Gideros 2016.04<br/> | |
− | + | '''Class:''' [[Cryptography]]<br/> | |
− | ''' | + | |
− | ''' | + | === Description === |
− | === | + | 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) | + | === Parameters === |
− | === | + | '''input''': (string) String whose content is to be hashed <br/> |
− | ''' | + | |
+ | === Return values === | ||
+ | '''Returns''' (string) MD5 hash (a 16 byte string)<br/> | ||
+ | |||
+ | ---- | ||
+ | {{Special:PrefixIndex/Cryptography}} | ||
+ | <br/> |
Revision as of 17:17, 2 December 2019
Available since: Gideros 2016.04
Class: Cryptography
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)