Blowfish CBC implementation.

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

Syntax

C#
public class BlowfishCBC : BlowfishECB
Visual Basic
Public Class BlowfishCBC _
	Inherits BlowfishECB
Visual C++
public ref class BlowfishCBC : public BlowfishECB

Remarks

Use this class to encrypt or decrypt byte arrays or a single blocks with Blowfish in CBC (Cipher Block Block Chaining) mode. This is the recommended way to use Blowfish.NET, unless certain requirements (e.g. moving block without decryption) exist.

Inheritance Hierarchy

System..::..Object
  LLCryptoLib.Crypto..::..BlowfishECB
    LLCryptoLib.Crypto..::..BlowfishCBC

See Also