SHA384.Create Metoda

Definice

Umožňuje vytvoření instance konkrétních implementací této abstraktní třídy.

Přetížení

Name Description
Create()

Vytvoří instanci výchozí implementace SHA384.

Create(String)
Zastaralé.

Vytvoří instanci zadané implementace SHA384.

Create()

Zdroj:
SHA384.cs
Zdroj:
SHA384.cs
Zdroj:
SHA384.cs
Zdroj:
SHA384.cs
Zdroj:
SHA384.cs

Vytvoří instanci výchozí implementace 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

Návraty

Nová instance .SHA384

Výjimky

Algoritmus byl použit s povoleným režimem FIPS (Federal Information Processing Standards), ale není kompatibilní se standardem FIPS.

Viz také

Platí pro

Create(String)

Zdroj:
SHA384.cs
Zdroj:
SHA384.cs
Zdroj:
SHA384.cs
Zdroj:
SHA384.cs
Zdroj:
SHA384.cs

Upozornění

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

Vytvoří instanci zadané implementace SHA384.

public:
 static System::Security::Cryptography::SHA384 ^ Create(System::String ^ hashName);
[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.SHA384? Create(string hashName);
public static System.Security.Cryptography.SHA384? Create(string hashName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
public static System.Security.Cryptography.SHA384? Create(string hashName);
public static System.Security.Cryptography.SHA384 Create(string hashName);
[<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.SHA384
static member Create : string -> System.Security.Cryptography.SHA384
[<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.SHA384
Public Shared Function Create (hashName As String) As SHA384

Parametry

hashName
String

Název konkrétní implementace SHA384 , která se má použít.

Návraty

Nová instance SHA384 použití zadané implementace.

Atributy

Výjimky

Algoritmus popsaný parametrem hashName byl použit s povoleným režimem FIPS (Federal Information Processing Standards), ale není kompatibilní se standardem FIPS.

Viz také

Platí pro