HMAC.Create Método

Definição

Cria uma instância de uma implementação de um Código de Autenticação de Mensagem baseado em Hash (HMAC) .

Sobrecargas

Nome Description
Create()
Obsoleto.
Obsoleto.

Cria uma instância da implementação padrão de um HMAC (Código de Autenticação de Mensagem baseado em Hash).

Create(String)
Obsoleto.

Cria uma instância da implementação especificada de um HMAC (Código de Autenticação de Mensagem baseado em Hash).

Create()

Origem:
HMAC.cs
Origem:
HMAC.cs
Origem:
HMAC.cs
Origem:
HMAC.cs
Origem:
HMAC.cs

Cuidado

The default implementation of this cryptography algorithm is not supported.

Cuidado

The default implementation of this cryptography algorithm is not supported

Cria uma instância da implementação padrão de um HMAC (Código de Autenticação de Mensagem baseado em Hash).

public:
 static System::Security::Cryptography::HMAC ^ Create();
[System.Obsolete("The default implementation of this cryptography algorithm is not supported.", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.HMAC Create();
[System.Obsolete("The default implementation of this cryptography algorithm is not supported", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.HMAC Create();
public static System.Security.Cryptography.HMAC Create();
[<System.Obsolete("The default implementation of this cryptography algorithm is not supported.", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : unit -> System.Security.Cryptography.HMAC
[<System.Obsolete("The default implementation of this cryptography algorithm is not supported", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : unit -> System.Security.Cryptography.HMAC
static member Create : unit -> System.Security.Cryptography.HMAC
Public Shared Function Create () As HMAC

Retornos

Uma nova instância SHA-1, a menos que as configurações padrão tenham sido alteradas usando o <elemento cryptoClass>.

Atributos

Exceções

.NET Core 2.0 – 3.1 e .NET 5 e posterior: em todos os casos.

Comentários

Esse método é obsoleto em versões .NET 5 e posteriores.

Por padrão, essa sobrecarga usa a implementação SHA-1 do HMAC. Se você quiser especificar uma implementação diferente, use a Create(String) sobrecarga, que permite especificar um nome de algoritmo.

Devido a problemas de colisão com SHA-1, a Microsoft recomenda um modelo de segurança baseado no SHA-256 ou superior.

Aplica-se a

Create(String)

Origem:
HMAC.cs
Origem:
HMAC.cs
Origem:
HMAC.cs
Origem:
HMAC.cs
Origem:
HMAC.cs

Cuidado

Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.

Cria uma instância da implementação especificada de um HMAC (Código de Autenticação de Mensagem baseado em Hash).

public:
 static System::Security::Cryptography::HMAC ^ Create(System::String ^ algorithmName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
[System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.HMAC? Create(string algorithmName);
public static System.Security.Cryptography.HMAC? Create(string algorithmName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
public static System.Security.Cryptography.HMAC? Create(string algorithmName);
public static System.Security.Cryptography.HMAC Create(string algorithmName);
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")>]
[<System.Obsolete("Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.", DiagnosticId="SYSLIB0045", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : string -> System.Security.Cryptography.HMAC
static member Create : string -> System.Security.Cryptography.HMAC
[<System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")>]
static member Create : string -> System.Security.Cryptography.HMAC
Public Shared Function Create (algorithmName As String) As HMAC

Parâmetros

algorithmName
String

A implementação do HMAC a ser usada. A tabela a seguir mostra os valores válidos para o algorithmName parâmetro e os algoritmos para os quais eles mapeiam.

Valor do parâmetro Implementa
System.Security.Cryptography.HMAC HMACSHA1
System.Security.Cryptography.KeyedHashAlgorithm HMACSHA1
HMACMD5 HMACMD5
System.Security.Cryptography.HMACMD5 HMACMD5
HMACRIPEMD160 HMACRIPEMD160
System.Security.Cryptography.HMACRIPEMD160 HMACRIPEMD160
HMACSHA1 HMACSHA1
System.Security.Cryptography.HMACSHA1 HMACSHA1
HMACSHA256 HMACSHA256
System.Security.Cryptography.HMACSHA256 HMACSHA256
HMACSHA384 HMACSHA384
System.Security.Cryptography.HMACSHA384 HMACSHA384
HMACSHA512 HMACSHA512
System.Security.Cryptography.HMACSHA512 HMACSHA512
Mactripledes MACTripleDES
System.Security.Cryptography.MACTripleDES MACTripleDES

Retornos

Uma nova instância da implementação HMAC especificada.

Atributos

Comentários

O HMAC dá suporte a vários algoritmos de hash, incluindo MD5, SHA-1, SHA-256 e RIPEMD160. Para obter a lista completa, consulte os valores com suporte para o algorithmName parâmetro.

Devido a problemas de colisão com MD5 e SHA-1, a Microsoft recomenda um modelo de segurança baseado no SHA-256 ou superior.

Aplica-se a