RijndaelManagedTransform.TransformFinalBlock(Byte[], Int32, Int32) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Computes the transformation for the specified region of the specified byte array.
public:
virtual cli::array <System::Byte> ^ TransformFinalBlock(cli::array <System::Byte> ^ inputBuffer, int inputOffset, int inputCount);
public byte[] TransformFinalBlock (byte[] inputBuffer, int inputOffset, int inputCount);
abstract member TransformFinalBlock : byte[] * int * int -> byte[]
override this.TransformFinalBlock : byte[] * int * int -> byte[]
Public Function TransformFinalBlock (inputBuffer As Byte(), inputOffset As Integer, inputCount As Integer) As Byte()
Parameters
- inputBuffer
- Byte[]
The input to perform the operation on.
- inputOffset
- Int32
The offset into the byte array to begin using data from.
- inputCount
- Int32
The number of bytes in the byte array to use as data.
Returns
The computed transformation.
Implements
Exceptions
The inputBuffer
parameter is null
.
The value of the inputCount
parameter is less than 0.
-or-
The value of the inputCount
parameter is grater than the length of inputBuffer
parameter.
The value of the inputOffset
parameter is negative.
The length of the inputCount
parameter is not evenly devisable by input block size.