Windows apps
Collapse the table of content
Expand the table of content
Information
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>^, Int32, Int32)

 

Computes the hash value for the specified region of the specified byte array.

Namespace:   System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

public:
array<unsigned char>^ ComputeHash(
	array<unsigned char>^ buffer,
	int offset,
	int count
)

Parameters

buffer
Type: array<System::Byte>^

The input to compute the hash code for.

offset
Type: System::Int32

The offset into the byte array from which to begin using data.

count
Type: System::Int32

The number of bytes in the array to use as data.

Return Value

Type: array<System::Byte>^

The computed hash code.

Exception Condition
ArgumentException

count is an invalid value.

-or-

buffer length is invalid.

ArgumentNullException

buffer is null.

ArgumentOutOfRangeException

offset is out of range. This parameter requires a non-negative number.

ObjectDisposedException

The object has already been disposed.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show:
© 2017 Microsoft