Compartilhar via


CryptographyClient.VerifyDataAsync Método

Definição

Sobrecargas

VerifyDataAsync(SignatureAlgorithm, Stream, Byte[], CancellationToken)

Verifica a assinatura especificada.

VerifyDataAsync(SignatureAlgorithm, Byte[], Byte[], CancellationToken)

Verifica a assinatura especificada.

VerifyDataAsync(SignatureAlgorithm, Stream, Byte[], CancellationToken)

Verifica a assinatura especificada.

public virtual System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult> VerifyDataAsync (Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm algorithm, System.IO.Stream data, byte[] signature, System.Threading.CancellationToken cancellationToken = default);
abstract member VerifyDataAsync : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * System.IO.Stream * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult>
override this.VerifyDataAsync : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * System.IO.Stream * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult>
Public Overridable Function VerifyDataAsync (algorithm As SignatureAlgorithm, data As Stream, 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 os dados.

data
Stream

Os dados correspondentes à assinatura.

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.

data é nulo.

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.

Comentários

O algoritmo de hash usado para calcular o resumo é derivado do algoritmo especificado:

Aplica-se a

VerifyDataAsync(SignatureAlgorithm, Byte[], Byte[], CancellationToken)

Verifica a assinatura especificada.

public virtual System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult> VerifyDataAsync (Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm algorithm, byte[] data, byte[] signature, System.Threading.CancellationToken cancellationToken = default);
abstract member VerifyDataAsync : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * byte[] * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult>
override this.VerifyDataAsync : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * byte[] * byte[] * System.Threading.CancellationToken -> System.Threading.Tasks.Task<Azure.Security.KeyVault.Keys.Cryptography.VerifyResult>
Public Overridable Function VerifyDataAsync (algorithm As SignatureAlgorithm, data 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 os dados.

data
Byte[]

Os dados correspondentes à assinatura.

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.

data é nulo.

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.

Comentários

O algoritmo de hash usado para calcular o resumo é derivado do algoritmo especificado:

Aplica-se a