Creates a Twofish decryptor object with the specified key.

Namespace:  Rebex.Security.Cryptography
Assembly:  Rebex.Common (in Rebex.Common.dll)

Syntax

Visual Basic
Public Overrides Function CreateDecryptor ( _
	rgbKey As Byte(), _
	rgbIV As Byte() _
) As ICryptoTransform
C#
public override ICryptoTransform CreateDecryptor(
	byte[] rgbKey,
	byte[] rgbIV
)

Parameters

rgbKey
Type: array<System..::..Byte>[]()[][]
The secret key to be used for the symmetric algorithm.
rgbIV
Type: array<System..::..Byte>[]()[][]
The initialization vector for CBC.

Return Value

A Twofish decryptor object.

Version Information

.NET Compact Framework

Supported in: 3.9, 3.5

See Also