DecryptParameters.A256GcmParameters(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 A256Gcm chiffrement.
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
Paramètres
- ciphertext
- Byte[]
Texte chiffré à 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
Instance de la DecryptParameters classe pour l’algorithme de A256Gcm chiffrement.
Exceptions
ciphertext
, iv
ou authenticationTag
est null.
S’applique à
Azure SDK for .NET