SHA384.Create Metoda

Definicja

Umożliwia utworzenie wystąpienia określonych implementacji tej klasy abstrakcyjnej.

Przeciążenia

Nazwa Opis
Create()

Tworzy wystąpienie domyślnej implementacji .SHA384

Create(String)
Przestarzałe.

Tworzy wystąpienie określonej implementacji klasy SHA384.

Create()

Źródło:
SHA384.cs
Źródło:
SHA384.cs
Źródło:
SHA384.cs
Źródło:
SHA384.cs
Źródło:
SHA384.cs

Tworzy wystąpienie domyślnej implementacji .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

Zwraca

Nowe wystąpienie klasy SHA384.

Wyjątki

Algorytm był używany z włączonym trybem Federal Information Processing Standards (FIPS), ale nie jest zgodny ze standardem FIPS.

Zobacz też

Dotyczy

Create(String)

Źródło:
SHA384.cs
Źródło:
SHA384.cs
Źródło:
SHA384.cs
Źródło:
SHA384.cs
Źródło:
SHA384.cs

Uwaga

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

Tworzy wystąpienie określonej implementacji klasy 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

Nazwa konkretnej implementacji, która SHA384 ma być używana.

Zwraca

Nowe wystąpienie SHA384 użycia określonej implementacji.

Atrybuty

Wyjątki

Algorytm opisany przez hashName parametr został użyty z włączonym trybem Federal Information Processing Standards (FIPS), ale nie jest zgodny ze standardem FIPS.

Zobacz też

Dotyczy