Overloaded. Computes the hash value for the input data.

Namespace: LLCryptoLib.Hash
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public byte[] ComputeHash(
	byte[] buffer,
	int offset,
	int count
)
Visual Basic
Public Function ComputeHash ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
) As Byte()
Visual C++
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

The computed hash code.

See Also