Gets or sets the padding mode used in the symmetric algorithm.
Namespace: LLCryptoLib.Security.CryptographyAssembly: 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. This property always returns PaddingMode.None.
Exceptions
Exception | Condition |
---|
System.Security.Cryptography..::..CryptographicException | The padding mode is set to a padding mode other than PaddingMode.None. |
See Also