MACTripleDES.Padding Property

Definition

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

public:
 property System::Security::Cryptography::PaddingMode Padding { System::Security::Cryptography::PaddingMode get(); void set(System::Security::Cryptography::PaddingMode value); };
[System.Runtime.InteropServices.ComVisible(false)]
public System.Security.Cryptography.PaddingMode Padding { get; set; }
[<System.Runtime.InteropServices.ComVisible(false)>]
member this.Padding : System.Security.Cryptography.PaddingMode with get, set
Public Property Padding As PaddingMode

Property Value

The padding mode used in the hashing algorithm.

Attributes

Exceptions

The property cannot be set because the padding mode is invalid.

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.

This field is accessed through the Padding property.

Applies to

See also