Compartilhar via


EncryptedXml.GetDecryptionKey(EncryptedData, String) Método

Definição

Recupera a chave de descriptografia do objeto EncryptedData especificado.

public:
 virtual System::Security::Cryptography::SymmetricAlgorithm ^ GetDecryptionKey(System::Security::Cryptography::Xml::EncryptedData ^ encryptedData, System::String ^ symmetricAlgorithmUri);
public:
 virtual System::Security::Cryptography::SymmetricAlgorithm ^ GetDecryptionKey(System::Security::Cryptography::Xml::EncryptedData ^ encryptedData, System::String ^ symAlgUri);
public virtual System.Security.Cryptography.SymmetricAlgorithm GetDecryptionKey (System.Security.Cryptography.Xml.EncryptedData encryptedData, string symmetricAlgorithmUri);
public virtual System.Security.Cryptography.SymmetricAlgorithm GetDecryptionKey (System.Security.Cryptography.Xml.EncryptedData encryptedData, string symAlgUri);
abstract member GetDecryptionKey : System.Security.Cryptography.Xml.EncryptedData * string -> System.Security.Cryptography.SymmetricAlgorithm
override this.GetDecryptionKey : System.Security.Cryptography.Xml.EncryptedData * string -> System.Security.Cryptography.SymmetricAlgorithm
abstract member GetDecryptionKey : System.Security.Cryptography.Xml.EncryptedData * string -> System.Security.Cryptography.SymmetricAlgorithm
override this.GetDecryptionKey : System.Security.Cryptography.Xml.EncryptedData * string -> System.Security.Cryptography.SymmetricAlgorithm
Public Overridable Function GetDecryptionKey (encryptedData As EncryptedData, symmetricAlgorithmUri As String) As SymmetricAlgorithm
Public Overridable Function GetDecryptionKey (encryptedData As EncryptedData, symAlgUri As String) As SymmetricAlgorithm

Parâmetros

encryptedData
EncryptedData

O objeto EncryptedData que contém as chaves de descriptografia a serem recuperadas.

symmetricAlgorithmUrisymAlgUri
String

O tamanho da chave de descriptografia para recuperar.

Retornos

SymmetricAlgorithm

Um objeto SymmetricAlgorithm associado à chave de descriptografia.

Exceções

O valor do parâmetro encryptedData é null.

O parâmetro encryptedData tem uma propriedade EncryptionMethod nula.

- ou - A chave criptografada não pode ser recuperada usando os parâmetros especificados.

Comentários

Dado um EncryptedData objeto, esse método procura a chave de descriptografia que pode ser usada para recuperar os dados de texto sem formatação. Se um nome de chave for especificado, o método procurará o algoritmo simétrico ou o algoritmo assimétrico associado ao nome da chave, conforme definido no mapeamento de nomes de chave. Caso contrário, se um método de recuperação ou um EncryptedKey objeto for especificado, o método carregará o EncryptedKey objeto e chamará o GetDecryptionKey método.

Aplica-se a