Default constructor.

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

Syntax

C#
public BlowfishCBC(
	byte[] key,
	int ofs,
	int len
)
Visual Basic
Public Sub New ( _
	key As Byte(), _
	ofs As Integer, _
	len As Integer _
)
Visual C++
public:
BlowfishCBC(
	array<unsigned char>^ key, 
	int ofs, 
	int len
)

Parameters

key
Type: array<System..::..Byte>[]()[][]
The key.
ofs
Type: System..::..Int32
The ofs.
len
Type: System..::..Int32
The len.

Remarks

The IV needs to be assigned after the instance has been created!

See Also