CryptoAPITransform.TransformFinalBlock Method
Computes the transformation for the specified region of the specified byte array.
Assembly: mscorlib (in mscorlib.dll)
public byte[] TransformFinalBlock( byte[] inputBuffer, int inputOffset, int inputCount )
Parameters
- inputBuffer
- Type: System.Byte[]
The input on which to perform the operation on.
- inputOffset
- Type: System.Int32
The offset into the byte array from which to begin using data from.
- inputCount
- Type: System.Int32
The number of bytes in the byte array to use as data.
Implements
ICryptoTransform.TransformFinalBlock(Byte[], Int32, Int32)| Exception | Condition |
|---|---|
| ArgumentNullException |
The inputBuffer parameter is null. |
| ArgumentException |
The inputOffset parameter is less than zero. -or- The inputCount parameter is less than zero. -or- The length of the input buffer is less than the sum of the input offset and the input count. |
| CryptographicException |
The PKCS7 padding is invalid. |
| ArgumentOutOfRangeException |
The inputOffset parameter is out of range. This parameter requires a non-negative number. |
The following code example demonstrates how to call the TransformFinalBlock method to transform the final block of bytes. This code example is part of a larger example provided for the CryptoAPITransform class.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows XP SP2 x64 Edition, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.