Transforms the final block.

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

Syntax

C#
public byte[] TransformFinalBlock(
	byte[] inputBuffer,
	int inputOffset,
	int inputCount
)
Visual Basic
Public Function TransformFinalBlock ( _
	inputBuffer As Byte(), _
	inputOffset As Integer, _
	inputCount As Integer _
) As Byte()
Visual C++
public:
virtual array<unsigned char>^ TransformFinalBlock(
	array<unsigned char>^ inputBuffer, 
	int inputOffset, 
	int inputCount
) sealed

Parameters

inputBuffer
Type: array<System..::..Byte>[]()[][]
The input for which to compute the transform.
inputOffset
Type: System..::..Int32
The offset into the byte array from which to begin using data.
inputCount
Type: System..::..Int32
The number of bytes in the byte array to use as data.

Return Value

The computed transform.

Implements

ICryptoTransform..::..TransformFinalBlock(array<Byte>[]()[][], Int32, Int32)

See Also