FileEncryptionTransform.TransformFinalBlock Method
Transforms the specified region of the specified byte array.
Namespace: Microsoft.WindowsAzure.MediaServices.Client
Assembly: Microsoft.WindowsAzure.MediaServices.Client (in Microsoft.WindowsAzure.MediaServices.Client.dll)
Syntax
'Declaration
Public Function TransformFinalBlock ( _
inputBuffer As Byte(), _
inputOffset As Integer, _
inputCount As Integer _
) As Byte()
'Usage
Dim instance As FileEncryptionTransform
Dim inputBuffer As Byte()
Dim inputOffset As Integer
Dim inputCount As Integer
Dim returnValue As Byte()
returnValue = instance.TransformFinalBlock(inputBuffer, _
inputOffset, inputCount)
public byte[] TransformFinalBlock(
byte[] inputBuffer,
int inputOffset,
int inputCount
)
public:
virtual array<unsigned char>^ TransformFinalBlock(
array<unsigned char>^ inputBuffer,
int inputOffset,
int inputCount
) sealed
abstract TransformFinalBlock :
inputBuffer:byte[] *
inputOffset:int *
inputCount:int -> byte[]
override TransformFinalBlock :
inputBuffer:byte[] *
inputOffset:int *
inputCount:int -> byte[]
public final function TransformFinalBlock(
inputBuffer : byte[],
inputOffset : int,
inputCount : int
) : byte[]
Parameters
- inputBuffer
Type: array<System.Byte[]
The input for which to compute the transform.
- inputOffset
Type: System.Int32
The offset into the byte array from which to begin using data.
- inputCount
Type: System.Int32
The number of bytes in the byte array to use as data.
Return Value
Type: array<System.Byte[]
The specified region of the specified byte array.
Implements
ICryptoTransform.TransformFinalBlock(array<Byte[], Int32, Int32)