ICryptoTransform::TransformBlock Method (array<Byte>^, Int32, Int32, array<Byte>^, Int32)

 

Transforms the specified region of the input byte array and copies the resulting transform to the specified region of the output byte array.

Namespace:   System.Security.Cryptography
Assembly:  mscorlib (in mscorlib.dll)

int TransformBlock(
	array<unsigned char>^ inputBuffer,
	int inputOffset,
	int inputCount,
	array<unsigned char>^ outputBuffer,
	int outputOffset
)

Parameters

inputBuffer
Type: array<System::Byte>^

The input for which to compute the transform.

inputOffset
Type: System::Int32

The offset into the input byte array from which to begin using data.

inputCount
Type: System::Int32

The number of bytes in the input byte array to use as data.

outputBuffer
Type: array<System::Byte>^

The output to which to write the transform.

outputOffset
Type: System::Int32

The offset into the output byte array from which to begin writing data.

Return Value

Type: System::Int32

The number of bytes written.

.NET Framework
Available since 1.1
Silverlight
Available since 2.0
Windows Phone Silverlight
Available since 7.0
Return to top
Show: