System::Security::Cryptography::ICryptoTransform::TransformBlock method

ICryptoTransform::TransformBlock method

RTTI information.

virtual int System::Security::Cryptography::ICryptoTransform::TransformBlock(ArrayPtr<uint8_t> inputBuffer, int inputOffset, int inputCount, ArrayPtr<uint8_t> outputBuffer, int outputOffset)=0
ParameterTypeDescription
inputBufferArrayPtr<uint8_t>Buffer to read data from.
inputOffsetintInput buffer offset.
inputCountintNumber of bytes to process.
outputBufferArrayPtr<uint8_t>Output buffer to copy data into; nullptr to do no copying.
outputOffsetintOutput buffer offset.

ReturnValue

Number of bytes written.

Remarks

Processes block of data and copies data to output array.

See Also