KeyedHashAlgorithm.Create Metod

Definition

Skapar en instans av en implementering av en nyckelad hash-algoritm.

Överlagringar

Name Description
Create()
Föråldrad.
Föråldrad.

Skapar en instans av standardimplementeringen av en nyckelad hash-algoritm.

Create(String)
Föråldrad.

Skapar en instans av den angivna implementeringen av en nyckelad hash-algoritm.

Create()

Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs

Varning

The default implementation of this cryptography algorithm is not supported.

Varning

The default implementation of this cryptography algorithm is not supported

Skapar en instans av standardimplementeringen av en nyckelad hash-algoritm.

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

Returer

En ny HMACSHA1 instans, såvida inte standardinställningarna har ändrats.

Attribut

Kommentarer

Som standard använder den här överlagringen implementeringen HMACSHA1 av en nyckelad hash-algoritm. Om du vill ange en annan implementering använder du överlagringen Create(String) , vilket gör att du kan ange ett algoritmnamn i stället. Konfigurationssystemet för kryptografi definierar standardimplementeringen av KeyedHashAlgorithm klassen.

På grund av kollisionsproblem med SHA-1 rekommenderar Microsoft en säkerhetsmodell baserad på SHA-256 eller bättre.

Se även

Gäller för

Create(String)

Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs
Källa:
KeyedHashAlgorithm.cs

Varning

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

Skapar en instans av den angivna implementeringen av en nyckelad hash-algoritm.

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

Parametrar

algName
String

Den nyckelade hashalgoritmimplementeringen som ska användas. I följande tabell visas giltiga värden för parametern algName och de algoritmer som de mappas till.

Parametervärde Implementerar
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

Returer

En ny instans av den angivna nyckelade hash-algoritmen.

Attribut

Undantag

.NET Core 2.0 – 3.1 och .NET 5 och senare: I samtliga fall.

Kommentarer

Den här metoden är föråldrad i .NET 5 och senare versioner.

Den här metoden stöder ett antal algoritmer, inklusive MD5, SHA-1, SHA-256 och RIPEMD160. En fullständig lista finns i de värden som stöds för parametern algName .

Se även

Gäller för