KeyedHashAlgorithm.Create Metoda

Definicja

Tworzy wystąpienie implementacji algorytmu skrótu klucza.

Przeciążenia

Nazwa Opis
Create()
Przestarzałe.
Przestarzałe.

Tworzy wystąpienie domyślnej implementacji algorytmu skrótu klucza.

Create(String)
Przestarzałe.

Tworzy wystąpienie określonej implementacji algorytmu skrótu klucza.

Create()

Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs

Uwaga

The default implementation of this cryptography algorithm is not supported.

Uwaga

The default implementation of this cryptography algorithm is not supported

Tworzy wystąpienie domyślnej implementacji algorytmu skrótu klucza.

public:
 static System::Security::Cryptography::KeyedHashAlgorithm ^ 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.KeyedHashAlgorithm 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.KeyedHashAlgorithm Create();
public static System.Security.Cryptography.KeyedHashAlgorithm 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.KeyedHashAlgorithm
[<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.KeyedHashAlgorithm
static member Create : unit -> System.Security.Cryptography.KeyedHashAlgorithm
Public Shared Function Create () As KeyedHashAlgorithm

Zwraca

Nowe HMACSHA1 wystąpienie, chyba że ustawienia domyślne zostały zmienione.

Atrybuty

Uwagi

Domyślnie to przeciążenie używa implementacji HMACSHA1 algorytmu skrótu klucza. Jeśli chcesz określić inną implementację, użyj Create(String) przeciążenia, które umożliwia określenie nazwy algorytmu. System konfiguracji kryptografii definiuje domyślną implementację KeyedHashAlgorithm klasy.

Ze względu na problemy z kolizją z algorytmem SHA-1 firma Microsoft zaleca model zabezpieczeń oparty na algorytmie SHA-256 lub lepszym.

Zobacz też

Dotyczy

Create(String)

Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs
Źródło:
KeyedHashAlgorithm.cs

Uwaga

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

Tworzy wystąpienie określonej implementacji algorytmu skrótu klucza.

public:
 static System::Security::Cryptography::KeyedHashAlgorithm ^ Create(System::String ^ algName);
[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.KeyedHashAlgorithm? Create(string algName);
public static System.Security.Cryptography.KeyedHashAlgorithm? Create(string algName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
public static System.Security.Cryptography.KeyedHashAlgorithm? Create(string algName);
public static System.Security.Cryptography.KeyedHashAlgorithm Create(string algName);
[<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.KeyedHashAlgorithm
static member Create : string -> System.Security.Cryptography.KeyedHashAlgorithm
[<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.KeyedHashAlgorithm
Public Shared Function Create (algName As String) As KeyedHashAlgorithm

Parametry

algName
String

Implementacja algorytmu skrótu klucza do użycia. W poniższej tabeli przedstawiono prawidłowe wartości parametru algName i algorytmy, do których są mapowe.

Wartość parametru Implementuje
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

Zwraca

Nowe wystąpienie określonego algorytmu skrótu klucza.

Atrybuty

Wyjątki

.NET Core 2.0 — 3.1 i .NET 5 i nowszych: we wszystkich przypadkach.

Uwagi

Ta metoda jest przestarzała w wersji .NET 5 i nowszych.

Ta metoda obsługuje wiele algorytmów, w tym MD5, SHA-1, SHA-256 i RIPEMD160. Aby uzyskać pełną listę, zobacz obsługiwane wartości parametru algName .

Zobacz też

Dotyczy