Pads the final block of data using the common method.

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

Syntax

C#
protected void StandardDigestPadding(
	byte[] inputBuffer,
	int inputOffset,
	int inputCount,
	EndianType endianness
)
Visual Basic
Protected Sub StandardDigestPadding ( _
	inputBuffer As Byte(), _
	inputOffset As Integer, _
	inputCount As Integer, _
	endianness As EndianType _
)
Visual C++
protected:
void StandardDigestPadding(
	array<unsigned char>^ inputBuffer, 
	int inputOffset, 
	int inputCount, 
	EndianType endianness
)

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.
endianness
Type: Classless.Hasher..::..EndianType
The endianness of the size value when written to the data block.

See Also