KeyedHashAlgorithm.Create Methode

Definition

Erstellt eine Instanz der Implementierung eines schlüsselgebundenen Hashalgorithmus.

Überlädt

Create()
Veraltet.
Veraltet.

Erstellt eine Instanz der Standardimplementierung eines schlüsselgebundenen Hashalgorithmus.

Create(String)

Erstellt eine Instanz der angegebenen Implementierung eines schlüsselgebundenen Hashalgorithmus.

Create()

Achtung

The default implementation of this cryptography algorithm is not supported

Achtung

The default implementation of this cryptography algorithm is not supported.

Erstellt eine Instanz der Standardimplementierung eines schlüsselgebundenen Hashalgorithmus.

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

Gibt zurück

KeyedHashAlgorithm

Eine neue HMACSHA1-Instanz, sofern die Standardeinstellungen nicht geändert wurden.

Attribute

Hinweise

Standardmäßig verwendet diese Überladung die HMACSHA1 Implementierung eines schlüsselierten Hashalgorithmus. Wenn Sie eine andere Implementierung angeben möchten, verwenden Sie stattdessen die Überladung, mit der Create(String) Sie stattdessen einen Algorithmusnamen angeben können. Das Kryptografiekonfigurationssystem definiert die Standardimplementierung der KeyedHashAlgorithm Klasse.

Aufgrund von Problemen durch Konflikte mit SHA1 wird von Microsoft ein Sicherheitsmodell empfohlen, das mindestens auf SHA256 basiert.

Siehe auch

Gilt für

Create(String)

Erstellt eine Instanz der angegebenen Implementierung eines schlüsselgebundenen Hashalgorithmus.

public:
 static System::Security::Cryptography::KeyedHashAlgorithm ^ Create(System::String ^ algName);
public static System.Security.Cryptography.KeyedHashAlgorithm? Create (string algName);
public static System.Security.Cryptography.KeyedHashAlgorithm Create (string algName);
static member Create : string -> System.Security.Cryptography.KeyedHashAlgorithm
Public Shared Function Create (algName As String) As KeyedHashAlgorithm

Parameter

algName
String

Die zu verwendende Implementierung eines schlüsselgebundenen Hashalgorithmus. Die folgende Tabelle zeigt die gültigen Werte für den algName-Parameter sowie die Algorithmen, denen sie zugeordnet sind.

Parameterwert die
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

Gibt zurück

KeyedHashAlgorithm

Eine neue Instanz des angegebenen schlüsselgebundenen Hashalgorithmus.

Ausnahmen

.NET Core 2.0 - 3.1 und .NET 5 und höher: In allen Fällen.

Hinweise

Diese Methode ist in .NET 5 und höher versionen veraltet.

Diese Methode unterstützt eine Reihe von Algorithmen, einschließlich MD5, SHA-1, SHA-256 und RIPEMD160. Eine vollständige Liste finden Sie in den unterstützten Werten für den algName Parameter.

Siehe auch

Gilt für