Share via


SHA384.Create Methode

Definition

Ermöglicht die Instanziierung bestimmter Implementierungen dieser abstrakten Klasse.

Überlädt

Create()

Erstellt eine Instanz der Standardimplementierung von SHA384.

Create(String)
Veraltet.

Erstellt eine Instanz einer angegebenen Implementierung von SHA384.

Create()

Quelle:
SHA384.cs
Quelle:
SHA384.cs
Quelle:
SHA384.cs

Erstellt eine Instanz der Standardimplementierung von SHA384.

public:
 static System::Security::Cryptography::SHA384 ^ Create();
public static System.Security.Cryptography.SHA384 Create ();
static member Create : unit -> System.Security.Cryptography.SHA384
Public Shared Function Create () As SHA384

Gibt zurück

Eine neue Instanz von SHA384.

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:
SHA384.cs
Quelle:
SHA384.cs
Quelle:
SHA384.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 einer angegebenen Implementierung von SHA384.

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

Parameter

hashName
String

Der Name der angegebenen Implementierung von SHA384, die verwendet werden soll.

Gibt zurück

Eine neue Instanz von SHA384 unter Verwendung der angegebenen Implementierung.

Attribute

Ausnahmen

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

Weitere Informationen

Gilt für: