DecryptParameters.A128GcmParameters(Byte[], Byte[], Byte[], Byte[]) Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un instance de la DecryptParameters classe pour l’algorithme de A128Gcm chiffrement.
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
Paramètres
- ciphertext
- Byte[]
Texte de chiffrement à déchiffrer.
- iv
- Byte[]
Vecteur d’initialisation (ou nonce) généré pendant le chiffrement.
- authenticationTag
- Byte[]
Balise d’authentification générée pendant le chiffrement.
- additionalAuthenticatedData
- Byte[]
Données facultatives authentifiées mais non chiffrées.
Retours
Une instance de la DecryptParameters classe pour l’algorithme de A128Gcm chiffrement.
Exceptions
ciphertext
, iv
ou authenticationTag
est null.
S’applique à
Azure SDK for .NET