RSAEncryptionPaddingMode Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Specifies the padding mode to use with RSA encryption or decryption operations.
public enum class RSAEncryptionPaddingMode
public enum RSAEncryptionPaddingMode
type RSAEncryptionPaddingMode =
Public Enum RSAEncryptionPaddingMode
- Inheritance
Fields
Name | Value | Description |
---|---|---|
Pkcs1 | 0 | PKCS #1 v1.5. It is supported for compatibility with existing applications. |
Oaep | 1 | Optimal Asymmetric Encryption Padding. It is recommended for new applications. |
Remarks
The Oaep
mode corresponds to the RSAES-OEAP encryption scheme described in the PKCS #1: RSA Encryption Standard, and the Pkcs1
mode corresponds to the RSAES-PKCS1-v1_5 encryption scheme described in the PKCS #1: RSA Encryption Standard.