Udostępnij za pośrednictwem


SHA256.Create Metoda

Definicja

Umożliwia tworzenie wystąpień określonych implementacji tej klasy abstrakcyjnej.

Przeciążenia

Create()

Tworzy wystąpienie domyślnej implementacji elementu SHA256.

Create(String)
Przestarzałe.

Tworzy wystąpienie określonej implementacji elementu SHA256.

Create()

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

Tworzy wystąpienie domyślnej implementacji elementu SHA256.

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

Zwraca

Nowe wystąpienie elementu SHA256. W programie .NET Framework ta metoda tworzy wystąpienie SHA256Managed klasy, jeśli tryb FIPS nie jest aktywny. Jeśli tryb FIPS jest aktywny, tworzy wystąpienie SHA256Cng klasy. Na platformie .NET Core zwraca wystąpienie klasy prywatnej pochodzącej z SHA256klasy .

Wyjątki

Tylko w programie .NET Framework 4.6.1 i starszych wersjach: 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:
SHA256.cs
Źródło:
SHA256.cs
Źródło:
SHA256.cs

Przestroga

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 elementu SHA256.

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

Parametry

hashName
String

Nazwa określonej implementacji, która SHA256 ma być używana.

Zwraca

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

Atrybuty

Wyjątki

Tylko na platformie .NET Framework: tryb FIPS jest włączony, ale hashName żąda SHA256Managedżądań, które nie są zgodne ze standardem FIPS.

Uwagi

Program .NET Framework zawiera implementacje i skojarzone wartości hashName:

Implementacja hashName
SHA256Managed SHA256
SHA-256
System.Security.Cryptography.SHA256
SHA256Cng System.Security.Cryptography.SHA256Cng
SHA256CryptoServiceProvider System.Security.Cryptography.SHA256CryptoServiceProvider

Zobacz też

Dotyczy