Computes a MD5 cryptographic message digest.
# Metadata
Platforms: desktop, server OS: mac, windows, linux Introduced: 1.0 Security:
# Syntax
the md5Digest of message
# Params
- message : A <binary data> string.
# Examples
get the md5Digest of "LiveCode"
put textEncode("Message to verify", "UTF-8") into tMessage get md5Digest(tMessage)
# Description
Compute a message digest of message using the MD5 cryptographic hash function.
> *Warning:* Serious flaws have been found in the MD5 hash algorithm > that make it unsuitable to use for security-critical purposes. > Unless you need backwards compatibility with existing systems, use > one of the other algorithms available with the messageDigest function
# Tags
math,
# See
- **function:** sha1Digest, messageDigest - **glossary:** byte, function