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

Name Description
Create()

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

Create(String)
Geçersiz.

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

Create()

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

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

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

Döndürülenler

MD5

Karma algoritmanı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
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 algoritmanın belirtilen uygulamasının bir örneğini MD5 oluşturur.

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

Parametreler

algName
String

Kullanılacak 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

için algName olası değerler şunlardır: System.Security.Cryptography.MD5, MD5, System.Security.Cryptography.MD5CryptoServiceProviderve System.Security.Cryptography.MD5Managed.

Ayrıca bkz.

Şunlara uygulanır