Gets or sets the padding mode used in the symmetric algorithm.

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

Syntax

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

Field Value

The padding mode used in the symmetric algorithm.

Remarks

Most plain text messages do not consist of a number of bytes that completely fill blocks. Often, there are not enough bytes to fill the last block. When this happens, a padding string is added to the text. For example, if the block length is 64 bits and the last block contains only 40 bits, 24 bits of padding are added. See PaddingMode for a description of specific modes.

Exceptions

ExceptionCondition
System.Security.Cryptography..::..CryptographicExceptionThe padding mode is not one of the PaddingMode values.

See Also