EncryptionAlgorithm 枚举

定义

指定用于为受保护有效负载提供机密性的对称加密算法。

public enum class EncryptionAlgorithm
public enum EncryptionAlgorithm
type EncryptionAlgorithm = 
Public Enum EncryptionAlgorithm
继承
EncryptionAlgorithm

字段

AES_128_CBC 0

AES 算法 (FIPS 197) ,其 128 位密钥在密码块链接模式下运行。

AES_128_GCM 3

AES 算法 (FIPS 197) ,其 128 位密钥在 Galois/Counter 模式下运行 (FIPS SP 800-38D) 。

AES_192_CBC 1

AES 算法 (FIPS 197) ,192 位密钥在密码块链接模式下运行。

AES_192_GCM 4

AES 算法 (FIPS 197) ,在 Galois/Counter 模式下运行的 192 位密钥 (FIPS SP 800-38D) 。

AES_256_CBC 2

AES 算法 (FIPS 197) ,其 256 位密钥在密码块链接模式下运行。

AES_256_GCM 5

AES 算法 (FIPS 197) ,其 256 位密钥在 Galois/Counter 模式下运行 (FIPS SP 800-38D) 。

适用于