Difference between revisions of "Cryptography.md5"

From GiderosMobile
m (Text replacement - "</source>" to "</syntaxhighlight>")
 
(7 intermediate revisions by 2 users not shown)
Line 1: Line 1:
__NOTOC__
 
 
'''Available since:''' Gideros 2016.04<br/>
 
'''Available since:''' Gideros 2016.04<br/>
 +
'''Class:''' [[Cryptography]]<br/>
 +
 
=== Description ===
 
=== Description ===
<translate>Compute the MD5 hash of the input string</translate>
+
Computes the MD5 hash of the input string.
<source lang="lua">
+
<syntaxhighlight lang="lua">
 
(string) = Cryptography.md5(input)
 
(string) = Cryptography.md5(input)
</source>
+
</syntaxhighlight>
 +
 
 
=== Parameters ===
 
=== Parameters ===
'''input''': (string) <translate>String whose content is to be hashed</translate> <br/>
+
'''input''': (string) string whose content is to be hashed<br/>
 +
 
 
=== Return values ===
 
=== Return values ===
'''Returns''' (string) <translate>MD5 hash (a 16 byte string)</translate><br/>
+
'''Returns''' (string) MD5 hash (a 16 byte string)<br/>
 +
 
 +
{{Cryptography}}

Latest revision as of 15:26, 13 July 2023

Available since: Gideros 2016.04
Class: Cryptography

Description

Computes 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)