Initializes a new instance of the ThreefishTransform class.

Namespace: LLCryptoLib.Crypto
Assembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)

Syntax

C#
public ThreefishTransform(
	byte[] key,
	byte[] iv,
	ThreefishTransformType type,
	CipherMode mode,
	PaddingMode padding
)
Visual Basic
Public Sub New ( _
	key As Byte(), _
	iv As Byte(), _
	type As ThreefishTransformType, _
	mode As CipherMode, _
	padding As PaddingMode _
)
Visual C++
public:
ThreefishTransform(
	array<unsigned char>^ key, 
	array<unsigned char>^ iv, 
	ThreefishTransformType type, 
	CipherMode mode, 
	PaddingMode padding
)

Parameters

key
Type: array<System..::..Byte>[]()[][]
The key.
iv
Type: array<System..::..Byte>[]()[][]
The iv.
type
Type: LLCryptoLib.Crypto..::..ThreefishTransformType
The type.
mode
Type: System.Security.Cryptography..::..CipherMode
The mode.
padding
Type: System.Security.Cryptography..::..PaddingMode
The padding.

See Also