Share via


MD5.Create Yöntem

Tanım

Bu soyut sınıfın belirli uygulamalarının oluşturulmasına izin verir.

Aşırı Yüklemeler

Create()

Karma algoritmasının varsayılan uygulamasının bir örneğini MD5 oluşturur.

Create(String)
Geçersiz.

Karma algoritmasının belirtilen uygulamasının bir örneğini MD5 oluşturur.

Create()

Kaynak:
MD5.cs
Kaynak:
MD5.cs
Kaynak:
MD5.cs

Karma algoritmasının varsayılan uygulamasının bir örneğini MD5 oluşturur.

public:
 static System::Security::Cryptography::MD5 ^ Create();
public static System.Security.Cryptography.MD5 Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.MD5 Create ();
static member Create : unit -> System.Security.Cryptography.MD5
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.MD5
Public Shared Function Create () As MD5

Döndürülenler

MD5

Karma algoritmasının MD5 yeni bir örneği.

Öznitelikler

Özel durumlar

Algoritma Federal Bilgi İşleme Standartları (FIPS) modu etkinken kullanılmıştır ancak FIPS ile uyumlu değildir.

Ayrıca bkz.

Şunlara uygulanır

Create(String)

Kaynak:
MD5.cs
Kaynak:
MD5.cs
Kaynak:
MD5.cs

Dikkat

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

Karma algoritmasının belirtilen uygulamasının bir örneğini MD5 oluşturur.

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

Parametreler

algName
String

Kullanılacak belirli uygulamasının MD5 adı.

Döndürülenler

MD5

Belirtilen uygulamasının yeni bir MD5örneği.

Öznitelikler

Özel durumlar

parametresi tarafından algName açıklanan algoritma Federal Bilgi İşleme Standartları (FIPS) modu etkinken kullanılmıştır ancak FIPS ile uyumlu değildir.

Açıklamalar

algName için olası değerler: System.Security.Cryptography.MD5, MD5, System.Security.Cryptography.MD5CryptoServiceProvider ve System.Security.Cryptography.MD5Managed.

Ayrıca bkz.

Şunlara uygulanır