The MD5 Message-Digest Algorithm
Implementation based on algorithm description at
http://www.faqs.org/rfcs/rfc1321.html
public static var digest:ByteArray
public static function hash(s:String):String
Performs the MD5 hash algorithm on a string.
Parameters
| s:String — The string to hash
|
Returns
| String — A string containing the hash value of s
|
public static function hashBinary(s:ByteArray):String
Performs the MD5 hash algorithm on a ByteArray.
Parameters
| s:ByteArray — The string to hash
|
Returns
| String — A string containing the hash value of s
|
public static function hashBytes(s:ByteArray):String
Parameters
Returns