AES 256bit

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

Syntax

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

Examples

CopyC#
// Set encryption algorithm
IStreamAlgorithm encryptAlgo = new StreamAES256();
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..::..StreamAES
      LLCryptoLib.Crypto..::..StreamAES256

See Also