EncryptionAlgorithm Enum

Definition

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

AES_128_CBC 0

The AES algorithm (FIPS 197) with a 128-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_CBC 1

The AES algorithm (FIPS 197) with a 192-bit key running in Cipher Block Chaining mode.

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_CBC 2

The AES algorithm (FIPS 197) with a 256-bit key running in Cipher Block Chaining mode.

AES_256_GCM 5

The AES algorithm (FIPS 197) with a 256-bit key running in Galois/Counter Mode (FIPS SP 800-38D).

Applies to