Packagecom.adobe.crypto
Classpublic class MD5

The MD5 Message-Digest Algorithm Implementation based on algorithm description at http://www.faqs.org/rfcs/rfc1321.html



Public Properties
 PropertyDefined by
  digest : ByteArray
[static]
MD5
Public Methods
 MethodDefined by
  
hash(s:String):String
[static] Performs the MD5 hash algorithm on a string.
MD5
  
hashBinary(s:ByteArray):String
[static] Performs the MD5 hash algorithm on a ByteArray.
MD5
  
hashBytes(s:ByteArray):String
[static]
MD5
Property detail
digestproperty
public static var digest:ByteArray
Method detail
hash()method
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
hashBinary()method 
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
hashBytes()method 
public static function hashBytes(s:ByteArray):StringParameters
s:ByteArray

Returns
String