Transforms the specified region of the input byte array and
copies the resulting transform to the specified region of the
output byte array.
Namespace: NMLE.RCEAssembly: NMLE (in NMLE.dll) Version: 1.0.0.0 (1.0.0.0)
public override int TransformBlock(
byte[] inputBuffer,
int inputOffset,
int inputCount,
byte[] outputBuffer,
int outputOffset
)
public override int TransformBlock(
byte[] inputBuffer,
int inputOffset,
int inputCount,
byte[] outputBuffer,
int outputOffset
)
Public Overrides Function TransformBlock (
inputBuffer As Byte(),
inputOffset As Integer,
inputCount As Integer,
outputBuffer As Byte(),
outputOffset As Integer
) As Integer
Public Overrides Function TransformBlock (
inputBuffer As Byte(),
inputOffset As Integer,
inputCount As Integer,
outputBuffer As Byte(),
outputOffset As Integer
) As Integer
public:
virtual int TransformBlock(
array<unsigned char>^ inputBuffer,
int inputOffset,
int inputCount,
array<unsigned char>^ outputBuffer,
int outputOffset
) override
public:
virtual int TransformBlock(
array<unsigned char>^ inputBuffer,
int inputOffset,
int inputCount,
array<unsigned char>^ outputBuffer,
int outputOffset
) override
Parameters
- inputBuffer
- Type:
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:
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:
Int32
The number of bytes written.
Implements
ICryptoTransform TransformBlock( Byte , Int32, Int32, Byte , Int32)