TransformBlock

SevenZipCipher.TransformBlock method

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

public abstract int TransformBlock(byte[] inputBuffer, int inputOffset, int inputCount, 
    byte[] outputBuffer, int outputOffset)
ParameterTypeDescription
inputBufferByte[]The input for which to compute the transform.
inputOffsetInt32The offset into the input byte array from which to begin using data.
inputCountInt32The number of bytes in the input byte array to use as data.
outputBufferByte[]The output to which to write the transform.
outputOffsetInt32The offset into the output byte array from which to begin writing data.

See Also