MD5.Create Metoda

Definicja

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

Przeciążenia

Nazwa Opis
Create()

Tworzy wystąpienie domyślnej implementacji algorytmu skrótu MD5 .

Create(String)
Przestarzałe.

Tworzy wystąpienie określonej implementacji algorytmu skrótu MD5 .

Create()

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

Tworzy wystąpienie domyślnej implementacji algorytmu skrótu MD5 .

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

Zwraca

MD5

Nowe wystąpienie algorytmu skrótu MD5 .

Atrybuty

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:
MD5.cs
Źródło:
MD5.cs
Źródło:
MD5.cs
Źródło:
MD5.cs
Źródło:
MD5.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 algorytmu skrótu MD5 .

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

Parametry

algName
String

Nazwa konkretnej implementacji MD5 do użycia.

Zwraca

MD5

Nowe wystąpienie określonej implementacji programu MD5.

Atrybuty

Wyjątki

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

Uwagi

Możliwe wartości algName to: System.Security.Cryptography.MD5, , MD5System.Security.Cryptography.MD5CryptoServiceProvideri System.Security.Cryptography.MD5Managed.

Zobacz też

Dotyczy