CryptographicPadding 枚举
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
指定非对称算法签名或加密操作的填充模式。
public enum class CryptographicPadding
/// [Windows.Foundation.Metadata.ContractVersion(Windows.Foundation.UniversalApiContract, 65536)]
enum class CryptographicPadding
[Windows.Foundation.Metadata.ContractVersion(typeof(Windows.Foundation.UniversalApiContract), 65536)]
public enum CryptographicPadding
var value = Windows.Security.Cryptography.Core.CryptographicPadding.none
Public Enum CryptographicPadding
- 继承
-
CryptographicPadding
- 属性
Windows 要求
设备系列 |
Windows 10 (在 10.0.10240.0 中引入)
|
API contract |
Windows.Foundation.UniversalApiContract (在 v1.0 中引入)
|
字段
None | 0 | 请勿使用填充。 |
RsaOaep | 1 | 使用最佳非对称加密填充 (OAEP) 方案。 |
RsaPkcs1V15 | 2 | 根据 RFC 3447 中定义的 RSA 算法,使用标准填充方案进行公钥加密。 |
RsaPss | 3 | 使用概率签名方案 (PSS) 方案。 |