CryptographyClient.VerifyData Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Sobrecargas
VerifyData(SignatureAlgorithm, Stream, Byte[], CancellationToken) |
Verifica a assinatura especificada. |
VerifyData(SignatureAlgorithm, Byte[], Byte[], CancellationToken) |
Verifica a assinatura especificada. |
VerifyData(SignatureAlgorithm, Stream, Byte[], CancellationToken)
Verifica a assinatura especificada.
public virtual Azure.Security.KeyVault.Keys.Cryptography.VerifyResult VerifyData (Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm algorithm, System.IO.Stream data, byte[] signature, System.Threading.CancellationToken cancellationToken = default);
abstract member VerifyData : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * System.IO.Stream * byte[] * System.Threading.CancellationToken -> Azure.Security.KeyVault.Keys.Cryptography.VerifyResult
override this.VerifyData : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * System.IO.Stream * byte[] * System.Threading.CancellationToken -> Azure.Security.KeyVault.Keys.Cryptography.VerifyResult
Public Overridable Function VerifyData (algorithm As SignatureAlgorithm, data As Stream, signature As Byte(), Optional cancellationToken As CancellationToken = Nothing) As 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
VerifyData(SignatureAlgorithm, Byte[], Byte[], CancellationToken)
Verifica a assinatura especificada.
public virtual Azure.Security.KeyVault.Keys.Cryptography.VerifyResult VerifyData (Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm algorithm, byte[] data, byte[] signature, System.Threading.CancellationToken cancellationToken = default);
abstract member VerifyData : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * byte[] * byte[] * System.Threading.CancellationToken -> Azure.Security.KeyVault.Keys.Cryptography.VerifyResult
override this.VerifyData : Azure.Security.KeyVault.Keys.Cryptography.SignatureAlgorithm * byte[] * byte[] * System.Threading.CancellationToken -> Azure.Security.KeyVault.Keys.Cryptography.VerifyResult
Public Overridable Function VerifyData (algorithm As SignatureAlgorithm, data As Byte(), signature As Byte(), Optional cancellationToken As CancellationToken = Nothing) As 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
Azure SDK for .NET