Bahasa

MD5.Create Metode

Definisi

Memungkinkan implementasi spesifik dari kelas abstrak ini dibuat.

Overload

Nama Deskripsi
Create()

Membuat instans implementasi MD5 default algoritma hash.

Create(String)
Kedaluwarsa.

Membuat instans implementasi MD5 algoritma hash yang ditentukan.

Create()

Sumber:
MD5.cs
Sumber:
MD5.cs
Sumber:
MD5.cs
Sumber:
MD5.cs
Sumber:
MD5.cs

Membuat instans implementasi MD5 default algoritma hash.

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

Mengembalikan

MD5

Instans MD5 baru algoritma hash.

Atribut

Pengecualian

Algoritma digunakan dengan mode Standar Pemrosesan Informasi Federal (FIPS) diaktifkan, tetapi tidak kompatibel dengan FIPS.

Lihat juga

Berlaku untuk

Create(String)

Sumber:
MD5.cs
Sumber:
MD5.cs
Sumber:
MD5.cs
Sumber:
MD5.cs
Sumber:
MD5.cs

Perhatian

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

Membuat instans implementasi MD5 algoritma hash yang ditentukan.

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

Parameter

algName
String

Nama implementasi spesifik yang MD5 akan digunakan.

Mengembalikan

MD5

Instans baru dari implementasi yang ditentukan dari MD5.

Atribut

Pengecualian

Algoritma yang dijelaskan oleh algName parameter digunakan dengan mode Federal Information Processing Standards (FIPS) diaktifkan, tetapi tidak kompatibel dengan FIPS.

Keterangan

Nilai yang mungkin untuk adalah: algName, , System.Security.Cryptography.MD5MD5, dan System.Security.Cryptography.MD5CryptoServiceProvider.System.Security.Cryptography.MD5Managed

Lihat juga

Berlaku untuk