Transforms the block.

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

Syntax

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

Parameters

inputBuffer
Type: array<System..::..Byte>[]()[][]
The input buffer.
inputOffset
Type: System..::..Int32
The input offset.
inputCount
Type: System..::..Int32
The input count.
outputBuffer
Type: array<System..::..Byte>[]()[][]
The output buffer.
outputOffset
Type: System..::..Int32
The output offset.

Return Value

[Missing <returns> documentation for "M:LLCryptoLib.Crypto.XOR.TransformBlock(System.Byte[],System.Int32,System.Int32,System.Byte[],System.Int32)"]

Implements

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

See Also