Partager via


EncryptionUtility.DecryptText Méthode

Définition

Surcharges

DecryptText(String)

Déchiffrer une chaîne de texte chiffrée par les méthodes EncryptText de EncryptionUtility, il est supposé que l’emplacement de stockage du certificat de déchiffrement est LocalMachine.

DecryptText(String, StoreLocation)

Déchiffrer une chaîne de texte chiffrée par les méthodes EncryptText de EncryptionUtility.

DecryptText(String)

Déchiffrer une chaîne de texte chiffrée par les méthodes EncryptText de EncryptionUtility, il est supposé que l’emplacement de stockage du certificat de déchiffrement est LocalMachine.

public static System.Security.SecureString DecryptText (string textToDecrypt);
static member DecryptText : string -> System.Security.SecureString
Public Shared Function DecryptText (textToDecrypt As String) As SecureString

Paramètres

textToDecrypt
String

Texte chiffré à déchiffrer.

Retours

Texte déchiffré en tant que SecureString.

S’applique à

DecryptText(String, StoreLocation)

Déchiffrer une chaîne de texte chiffrée par les méthodes EncryptText de EncryptionUtility.

public static System.Security.SecureString DecryptText (string textToDecrypt, System.Security.Cryptography.X509Certificates.StoreLocation storeLocation);
static member DecryptText : string * System.Security.Cryptography.X509Certificates.StoreLocation -> System.Security.SecureString
Public Shared Function DecryptText (textToDecrypt As String, storeLocation As StoreLocation) As SecureString

Paramètres

textToDecrypt
String

Texte chiffré à déchiffrer.

storeLocation
StoreLocation

Emplacement du magasin de certificats pour récupérer le certificat de déchiffrement.

Retours

Texte déchiffré en tant que SecureString.

S’applique à