你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

DecryptParameters.A128GcmParameters(Byte[], Byte[], Byte[], Byte[]) 方法

定义

为加密算法创建 类的A128Gcm实例DecryptParameters

public static Azure.Security.KeyVault.Keys.Cryptography.DecryptParameters A128GcmParameters (byte[] ciphertext, byte[] iv, byte[] authenticationTag, byte[] additionalAuthenticatedData = default);
static member A128GcmParameters : byte[] * byte[] * byte[] * byte[] -> Azure.Security.KeyVault.Keys.Cryptography.DecryptParameters
Public Shared Function A128GcmParameters (ciphertext As Byte(), iv As Byte(), authenticationTag As Byte(), Optional additionalAuthenticatedData As Byte() = Nothing) As DecryptParameters

参数

ciphertext
Byte[]

要解密的密文。

iv
Byte[]

在加密期间生成的初始化向量 (或 nonce) 。

authenticationTag
Byte[]

加密期间生成的身份验证标记。

additionalAuthenticatedData
Byte[]

经过身份验证但未加密的可选数据。

返回

加密算法的 DecryptParameters 类的 A128Gcm 实例。

例外

ciphertextivauthenticationTag 为 null。

适用于