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