DecryptParameters.A256GcmParameters(Byte[], Byte[], Byte[], Byte[]) メソッド

定義

暗号化アルゴリズムの クラスの DecryptParameters インスタンスを A256Gcm 作成します。

public static Azure.Security.KeyVault.Keys.Cryptography.DecryptParameters A256GcmParameters (byte[] ciphertext, byte[] iv, byte[] authenticationTag, byte[] additionalAuthenticatedData = default);
static member A256GcmParameters : byte[] * byte[] * byte[] * byte[] -> Azure.Security.KeyVault.Keys.Cryptography.DecryptParameters
Public Shared Function A256GcmParameters (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 クラスの A256Gcm インスタンス。

例外

ciphertextiv、または authenticationTag が null です。

適用対象