StreamBlowfish 256 bit Key len = 32 byte Block len = 8 byte

Examples

Perform a Blowfish stream encryption.
CopyC#
Set encryption algorithm
IStreamAlgorithm encryptAlgo = new StreamBlowfish256();
StreamCrypter encrypter = new StreamCrypter(encryptAlgo);
// Set symmetric password
encrypter.GenerateKeys("littlelitesoftware");
// Encrypt
encrypter.EncryptDecrypt(rndFile.FullName, encryptedFile, true, null);
Console.WriteLine("File encrypted into " + encryptedFile);

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

Syntax

C#
[SerializableAttribute]
public class StreamBlowfish256 : StreamAlgorithm
Visual Basic
<SerializableAttribute> _
Public Class StreamBlowfish256 _
	Inherits StreamAlgorithm
Visual C++
[SerializableAttribute]
public ref class StreamBlowfish256 : public StreamAlgorithm

Inheritance Hierarchy

System..::..Object
  LLCryptoLib.Crypto..::..StreamAlgorithm
    LLCryptoLib.Crypto..::..StreamBlowfish256

See Also