Share via


MD5.Create Methode

Definition

Ermöglicht das Erstellen spezifischer Implementierungen dieser abstrakten Klasse.

Überlädt

Create()

Erstellt eine Instanz der Standardimplementierung des MD5-Hashalgorithmus.

Create(String)
Veraltet.

Erstellt eine Instanz der angegebenen Implementierung des MD5-Hashalgorithmus.

Create()

Quelle:
MD5.cs
Quelle:
MD5.cs
Quelle:
MD5.cs

Erstellt eine Instanz der Standardimplementierung des MD5-Hashalgorithmus.

public:
 static System::Security::Cryptography::MD5 ^ Create();
public static System.Security.Cryptography.MD5 Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.MD5 Create ();
static member Create : unit -> System.Security.Cryptography.MD5
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.MD5
Public Shared Function Create () As MD5

Gibt zurück

MD5

Eine neue Instanz des MD5-Hashalgorithmus.

Attribute

Ausnahmen

Der Algorithmus wurde bei aktiviertem FIPS (Federal Information Processing Standards)-Modus verwendet, ist aber nicht FIPS-kompatibel.

Weitere Informationen

Gilt für:

Create(String)

Quelle:
MD5.cs
Quelle:
MD5.cs
Quelle:
MD5.cs

Achtung

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

Erstellt eine Instanz der angegebenen Implementierung des MD5-Hashalgorithmus.

public:
 static System::Security::Cryptography::MD5 ^ Create(System::String ^ algName);
public static System.Security.Cryptography.MD5? Create (string algName);
[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.MD5? Create (string algName);
public static System.Security.Cryptography.MD5 Create (string algName);
static member Create : string -> System.Security.Cryptography.MD5
[<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.MD5
Public Shared Function Create (algName As String) As MD5

Parameter

algName
String

Der Name der spezifischen Implementierung von MD5, die verwendet werden soll.

Gibt zurück

MD5

Eine neue Instanz der angegebenen Implementierung von MD5.

Attribute

Ausnahmen

Der durch den algName-Parameter beschriebene Algorithmus wurde bei aktiviertem FIPS-Modus (Federal Information Processing Standards) verwendet, ist aber nicht FIPS-kompatibel.

Hinweise

Mögliche Werte für algName sind System.Security.Cryptography.MD5, MD5System.Security.Cryptography.MD5CryptoServiceProvider oder System.Security.Cryptography.MD5Managed.

Weitere Informationen

Gilt für: