Partager via


InMemorySymmetricSecurityKey.GetDecryptionTransform(String, Byte[]) Méthode

Définition

Obtient une transformation qui déchiffre le texte chiffré à l'aide de l'algorithme de chiffrement spécifié.

public:
 override System::Security::Cryptography::ICryptoTransform ^ GetDecryptionTransform(System::String ^ algorithm, cli::array <System::Byte> ^ iv);
public override System.Security.Cryptography.ICryptoTransform GetDecryptionTransform (string algorithm, byte[] iv);
override this.GetDecryptionTransform : string * byte[] -> System.Security.Cryptography.ICryptoTransform
Public Overrides Function GetDecryptionTransform (algorithm As String, iv As Byte()) As ICryptoTransform

Paramètres

algorithm
String

Algorithme de chiffrement qui déchiffre le texte de chiffrement, tel que du XML chiffré.

iv
Byte[]

Tableau d'Byte qui contient le vecteur d'initialisation (IV) pour l'algorithme spécifié.

Retours

ICryptoTransform qui représente la transformation du déchiffrement.

Exceptions

algorithm n’est pas pris en charge. Les algorithmes pris en charge sont TripleDesEncryption, Aes128Encryption, Aes192Encryption et Aes256Encryption.

Remarques

Utilisez les champs qui représentent les algorithmes de déchiffrement dans la classe SecurityAlgorithms pour spécifier l'algorithme.

S’applique à