NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Hash.GenerateHash

Computes hash value for the specified algorithm

[Visual Basic]
Public Function GenerateHash( _
   ByVal hashAlg As HashAlgorithm _
) As Byte ()
[C#]
public byte[] GenerateHash(
   HashAlgorithm hashAlg
);
[C++]
public: unsigned char* GenerateHash(
   HashAlgorithm* hashAlg
) [];
[JScript]
public function GenerateHash(
   hashAlg : HashAlgorithm
) : Byte[];

Parameters

hashAlg
[To be supplied.]

Return Value

Byte array representing the hash value computed according to the specified algorithm.

Remarks

The assembly specified in the constructor provides the bytes for the hash computation.

See Also

Hash Class | Hash Members | System.Security.Policy Namespace