StreamBlowfish 448 bit Key len = 56 byte Block len = 8 byte

Examples

Perform a Blowfish stream encryption.
CopyC#
// Set encryption algorithm
IStreamAlgorithm encryptAlgo = new StreamBlowfish448();
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 StreamBlowfish448 : StreamAlgorithm
Visual Basic
<SerializableAttribute> _
Public Class StreamBlowfish448 _
	Inherits StreamAlgorithm
Visual C++
[SerializableAttribute]
public ref class StreamBlowfish448 : public StreamAlgorithm

Inheritance Hierarchy

System..::..Object
  LLCryptoLib.Crypto..::..StreamAlgorithm
    LLCryptoLib.Crypto..::..StreamBlowfish448

See Also