The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.
HashAlgorithm::ComputeHash Method (array<Byte>^)
.NET Framework (current version)
Computes the hash value for the specified byte array.
Assembly: mscorlib (in mscorlib.dll)
Parameters
- buffer
-
Type:
array<System::Byte>^
The input to compute the hash code for.
| Exception | Condition |
|---|---|
| ArgumentNullException | buffer is null. |
| ObjectDisposedException | The object has already been disposed. |
The following example computes the MD5 hash value of a string and returns the hash as a 32-character, hexadecimal-formatted string. The hash string created by this code example is compatible with any MD5 hash function (on any platform) that creates a 32-character, hexadecimal-formatted hash string.
.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Show: