IncrementalHash.CreateHMAC 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
CreateHMAC(HashAlgorithmName, Byte[]) |
Crie um IncrementalHash para o algoritmo HMAC (Código de Autenticação de Mensagem baseado em Hash) utilizando o algoritmo de hash especificado por |
CreateHMAC(HashAlgorithmName, ReadOnlySpan<Byte>) |
Crie um IncrementalHash para o algoritmo HMAC (Código de Autenticação de Mensagem baseado em Hash) utilizando o algoritmo de hash especificado por |
CreateHMAC(HashAlgorithmName, Byte[])
- Origem:
- IncrementalHash.cs
- Origem:
- IncrementalHash.cs
- Origem:
- IncrementalHash.cs
Crie um IncrementalHash para o algoritmo HMAC (Código de Autenticação de Mensagem baseado em Hash) utilizando o algoritmo de hash especificado por hashAlgorithm
e uma chave especificada por key
.
public:
static System::Security::Cryptography::IncrementalHash ^ CreateHMAC(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, cli::array <System::Byte> ^ key);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] key);
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, byte[] key);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * byte[] -> System.Security.Cryptography.IncrementalHash
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * byte[] -> System.Security.Cryptography.IncrementalHash
Public Shared Function CreateHMAC (hashAlgorithm As HashAlgorithmName, key As Byte()) As IncrementalHash
Parâmetros
- hashAlgorithm
- HashAlgorithmName
O nome do algoritmo de hash a ser executado dentro do HMAC.
- key
- Byte[]
A chave secreta do HMAC.
Retornos
Uma instância IncrementalHash pronta para calcular o algoritmo de hash especificado por hashAlgorithm
.
- Atributos
Exceções
key
é null
.
hashAlgorithm
.Name é null
ou a cadeia de caracteres vazia.
hashAlgorithm
não é um algoritmo de hash conhecido.
Aplica-se a
CreateHMAC(HashAlgorithmName, ReadOnlySpan<Byte>)
- Origem:
- IncrementalHash.cs
- Origem:
- IncrementalHash.cs
- Origem:
- IncrementalHash.cs
Crie um IncrementalHash para o algoritmo HMAC (Código de Autenticação de Mensagem baseado em Hash) utilizando o algoritmo de hash especificado por hashAlgorithm
e uma chave especificada por key
.
public:
static System::Security::Cryptography::IncrementalHash ^ CreateHMAC(System::Security::Cryptography::HashAlgorithmName hashAlgorithm, ReadOnlySpan<System::Byte> key);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> key);
public static System.Security.Cryptography.IncrementalHash CreateHMAC (System.Security.Cryptography.HashAlgorithmName hashAlgorithm, ReadOnlySpan<byte> key);
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> -> System.Security.Cryptography.IncrementalHash
static member CreateHMAC : System.Security.Cryptography.HashAlgorithmName * ReadOnlySpan<byte> -> System.Security.Cryptography.IncrementalHash
Public Shared Function CreateHMAC (hashAlgorithm As HashAlgorithmName, key As ReadOnlySpan(Of Byte)) As IncrementalHash
Parâmetros
- hashAlgorithm
- HashAlgorithmName
O nome do algoritmo de hash a ser executado dentro do HMAC.
- key
- ReadOnlySpan<Byte>
A chave secreta do HMAC.
Retornos
Uma instância de hash para calcular o algoritmo de hash especificado por hashAlgorithm
.
- Atributos
Exceções
hashAlgorithm
.Name é null
ou a cadeia de caracteres vazia.
hashAlgorithm
não é um algoritmo de hash conhecido.