Gets or sets the feedback size of the cryptographic operation in bits.

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

Syntax

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

Field Value

The feedback size in bits.

Remarks

The feedback size determines the amount of data that is fed back to successive encryption or decryption operations. The feedback size cannot be greater than the block size.

Exceptions

ExceptionCondition
System.Security.Cryptography..::..CryptographicExceptionThe feedback size is larger than the block size.

See Also