Process a block of data.

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

Syntax

C#
protected abstract void ProcessBlock(
	byte[] inputBuffer,
	int inputOffset
)
Visual Basic (Declaration)
Protected MustOverride Sub ProcessBlock ( _
	inputBuffer As Byte(), _
	inputOffset As Integer _
)
Visual C++
protected:
virtual void ProcessBlock(
	array<unsigned char>^ inputBuffer, 
	int inputOffset
) abstract

Parameters

inputBuffer
Type: array< System..::.Byte >[]()[]
The block of data to process.
inputOffset
Type: System..::.Int32
Where to start in the block.

See Also