Difference between revisions of "Cryptography.md5"
From GiderosMobile
m |
m (Text replacement - "<source" to "<syntaxhighlight") |
||
Line 4: | Line 4: | ||
=== Description === | === Description === | ||
Computes the MD5 hash of the input string. | Computes the MD5 hash of the input string. | ||
− | < | + | <syntaxhighlight lang="lua"> |
(string) = Cryptography.md5(input) | (string) = Cryptography.md5(input) | ||
</source> | </source> |
Revision as of 14:26, 13 July 2023
Available since: Gideros 2016.04
Class: Cryptography
Description
Computes the MD5 hash of the input string. <syntaxhighlight lang="lua"> (string) = Cryptography.md5(input) </source>
Parameters
input: (string) string whose content is to be hashed
Return values
Returns (string) MD5 hash (a 16 byte string)