ComputeHash Method (Byte[], Int32, Int32)
Collapse the table of content
Expand the table of content

HashAlgorithm.ComputeHash Method (Byte[], Int32, Int32)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

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

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

public byte[] ComputeHash(
	byte[] buffer,
	int offset,
	int count
)

Parameters

buffer
Type: 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: System.Byte []
The computed hash code.

ExceptionCondition
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.

Windows Phone OS

Supported in: 8.1, 8.0, 7.1, 7.0

Windows Phone

Show:
© 2017 Microsoft