Process the last block of data.

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

Syntax

C#
protected override byte[] ProcessFinalBlock(
	byte[] inputBuffer,
	int inputOffset,
	int inputCount
)
Visual Basic
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 final block of data to process.
inputOffset
Type: System..::..Int32
Where to start in the array.
inputCount
Type: System..::..Int32
How many bytes should be processed.

Return Value

The results of the completed hash calculation.

See Also