Gets or sets the mode for operation of the symmetric algorithm.

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

Syntax

C#
public override CipherMode Mode { get; set; }
Visual Basic
Public Overrides Property Mode As CipherMode
	Get
	Set
Visual C++
public:
virtual property CipherMode Mode {
	CipherMode get () override;
	void set (CipherMode value) override;
}

Field Value

The mode for operation of the symmetric algorithm.

Remarks

RC4 only supports the OFB cipher mode. See CipherMode for a description of this mode.

Exceptions

ExceptionCondition
System.Security.Cryptography..::..CryptographicExceptionThe cipher mode is not OFB.

See Also