Computes the MD5 hash algorithm for the given assembly.
[Visual Basic] Public ReadOnly Property MD5 As Byte () [C#] public byte[] MD5 {get;} [C++] public: __property unsigned char* get_MD5(); [JScript] public function get MD5() : Byte[];
Byte array representing the hash value computed according to the MD5 algorithm.
The assembly specified in the constructor provides the bytes for the hash computation.
[C#]
Hash hash = new Hash ( myAssembly ); Byte hashcode[] = hash.MD5;
Hash Class | Hash Members | System.Security.Policy Namespace