MD5.Create Methode

Definition

Ermöglicht die Erstellung bestimmter Implementierungen dieser abstrakten Klasse.

Überlädt

Name Beschreibung
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
Quelle:
MD5.cs
Quelle:
MD5.cs

Erstellt eine Instanz der Standardimplementierung des MD5 Hashalgorithmus.

public:
 static System::Security::Cryptography::MD5 ^ Create();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.MD5 Create();
public static System.Security.Cryptography.MD5 Create();
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.MD5
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 mit aktivierten FIPS-Modus (Federal Information Processing Standards) verwendet, ist jedoch nicht FIPS kompatibel.

Weitere Informationen

Gilt für:

Create(String)

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

Parameter

algName
String

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

Gibt zurück

MD5

Eine neue Instanz der angegebenen Implementierung von MD5.

Attribute

Ausnahmen

Der vom algName Parameter beschriebene Algorithmus wurde mit aktivierten FIPS-Modus (Federal Information Processing Standards) verwendet, ist jedoch nicht kompatibel.

Hinweise

Mögliche Werte für algName : System.Security.Cryptography.MD5, , MD5, System.Security.Cryptography.MD5CryptoServiceProvider, und System.Security.Cryptography.MD5Managed.

Weitere Informationen

Gilt für: