Performs the hash algorithm on the data provided.

Namespace:  Classless.Hasher
Assembly:  Classless.Hasher (in Classless.Hasher.dll) Version: 0.8.3649.33599

Syntax

C#
protected override void HashCore(
	byte[] array,
	int ibStart,
	int cbSize
)
Visual Basic (Declaration)
Protected Overrides Sub HashCore ( _
	array As Byte(), _
	ibStart As Integer, _
	cbSize As Integer _
)
Visual C++
protected:
virtual void HashCore(
	array<unsigned char>^ array, 
	int ibStart, 
	int cbSize
) override

Parameters

array
Type: array< System..::.Byte >[]()[]
The array containing the data.
ibStart
Type: System..::.Int32
The position in the array to begin reading from.
cbSize
Type: System..::.Int32
How many bytes in the array to read.

See Also