ARC4 algorithm at 512bit
Namespace: LLCryptoLib.CryptoAssembly: LLCryptoLib (in LLCryptoLib.dll) Version: 2.0.1024.0 (2.0.1024)
Syntax
C# |
---|
[SerializableAttribute] public class StreamARC4512 : StreamARC4Base |
Visual Basic |
---|
<SerializableAttribute> _ Public Class StreamARC4512 _ Inherits StreamARC4Base |
Visual C++ |
---|
[SerializableAttribute] public ref class StreamARC4512 : public StreamARC4Base |
Examples

// Set encryption algorithm IStreamAlgorithm encryptAlgo = new StreamARC4512(); 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);
Inheritance Hierarchy
System..::..Object
LLCryptoLib.Crypto..::..StreamAlgorithm
LLCryptoLib.Crypto..::..StreamARC4Base
LLCryptoLib.Crypto..::..StreamARC4512
LLCryptoLib.Crypto..::..StreamAlgorithm
LLCryptoLib.Crypto..::..StreamARC4Base
LLCryptoLib.Crypto..::..StreamARC4512