Process the last block of data.

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

Syntax

C#
protected override byte[] ProcessFinalBlock(
	byte[] inputBuffer,
	int inputOffset,
	int inputCount
)
Visual Basic (Declaration)
Protected Overrides Function ProcessFinalBlock ( _
	inputBuffer As Byte(), _
	inputOffset As Integer, _
	inputCount As Integer _
) As Byte()
Visual C++
protected:
virtual array<unsigned char>^ ProcessFinalBlock(
	array<unsigned char>^ inputBuffer, 
	int inputOffset, 
	int inputCount
) override

Parameters

inputBuffer
Type: array< System..::.Byte >[]()[]
The block of data to process.
inputOffset
Type: System..::.Int32
Where to start in the block.
inputCount
Type: System..::.Int32
How many blocks have been processed so far.

Return Value

The results of the completed hash calculation.

See Also