EncryptionAlgorithm 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 a symmetric encryption algorithm to use for providing confidentiality to protected payloads.
public enum class EncryptionAlgorithm
public enum EncryptionAlgorithm
type EncryptionAlgorithm =
Public Enum EncryptionAlgorithm
- Inheritance
-
EncryptionAlgorithm
Fields
Name | Value | Description |
---|---|---|
AES_128_CBC | 0 | The AES algorithm (FIPS 197) with a 128-bit key running in Cipher Block Chaining mode. |
AES_192_CBC | 1 | The AES algorithm (FIPS 197) with a 192-bit key running in Cipher Block Chaining mode. |
AES_256_CBC | 2 | The AES algorithm (FIPS 197) with a 256-bit key running in Cipher Block Chaining mode. |
AES_128_GCM | 3 | The AES algorithm (FIPS 197) with a 128-bit key running in Galois/Counter Mode (FIPS SP 800-38D). |
AES_192_GCM | 4 | The AES algorithm (FIPS 197) with a 192-bit key running in Galois/Counter Mode (FIPS SP 800-38D). |
AES_256_GCM | 5 | The AES algorithm (FIPS 197) with a 256-bit key running in Galois/Counter Mode (FIPS SP 800-38D). |