Process the last block of data.

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

Syntax

C#
protected abstract byte[] ProcessFinalBlock(
	byte[] inputBuffer,
	int inputOffset,
	int inputCount
)
Visual Basic
Protected MustOverride 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
) abstract

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 bytes need to be processed.

Return Value

The hash code in bytes

See Also