MACTripleDES.Padding 属性

定义

获取或设置哈希算法中使用的填充模式。

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

属性值

哈希算法中使用的填充模式。

属性

例外

无法设置属性,因为填充模式无效。

注解

大多数纯文本消息不包含完全填充块的字节数。 通常没有足够的字节来填充最后一个块。 发生这种情况时,会向文本添加一个填充字符串。 例如,如果块长度为 64 位,而最后一个块仅包含 40 位,则会添加 24 位填充。 有关特定模式的说明,请参阅 PaddingMode

可通过 Padding 属性访问此字段。

适用于

另请参阅