Compartilhar via


CryptographyClient.VerifyAsync Método

Definição

Verifica a assinatura especificada.

public virtual System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult> VerifyAsync (Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm algorithm, byte[] digest, byte[] signature, System.Threading.CancellationToken cancellationToken = default);
abstract member VerifyAsync : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * byte[] * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult>
override this.VerifyAsync : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * byte[] * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult>
Public Overridable Function VerifyAsync (algorithm As SignatureAlgorithm, digest As Byte(), signature As Byte(), Optional cancellationToken As CancellationToken = Nothing) As Task(Of VerifyResult)

Parâmetros

algorithm
SignatureAlgorithm

O SignatureAlgorithm a ser usado. Esse deve ser o mesmo algoritmo usado para assinar o resumo.

digest
Byte[]

O resumo pré-hash correspondente à assinatura. O algoritmo de hash usado para calcular o resumo deve ser compatível com o algoritmo especificado.

signature
Byte[]

A assinatura a ser verificada.

cancellationToken
CancellationToken

Um CancellationToken para cancelar a operação.

Retornos

O resultado da operação de verificação. Se a assinatura for válida, a IsValid propriedade do retornado VerifyResult será definida como true.

Exceções

O especificado algorithm não corresponde à chave correspondente ao identificador de chave.

O provedor criptográfico local gerou uma exceção.

A chave é inválida para a operação atual.

Não há suporte para a operação com a chave especificada.

O servidor retornou um erro. Consulte Message para obter detalhes retornados do servidor.

Aplica-se a