MD5.Create Método

Definición

Permite crear implementaciones específicas de esta clase abstracta.

Sobrecargas

Nombre Description
Create()

Crea una instancia de la implementación predeterminada del MD5 algoritmo hash.

Create(String)
Obsoletos.

Crea una instancia de la implementación especificada del MD5 algoritmo hash.

Create()

Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs

Crea una instancia de la implementación predeterminada del MD5 algoritmo 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

Devoluciones

MD5

Nueva instancia del MD5 algoritmo hash.

Atributos

Excepciones

El algoritmo se usó con el modo Federal Information Processing Standards (FIPS) habilitado, pero no es compatible con FIPS.

Consulte también

Se aplica a

Create(String)

Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs
Source:
MD5.cs

Precaución

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

Crea una instancia de la implementación especificada del MD5 algoritmo hash.

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

Parámetros

algName
String

Nombre de la implementación específica de MD5 que se va a usar.

Devoluciones

MD5

Nueva instancia de la implementación especificada de MD5.

Atributos

Excepciones

El algoritmo descrito por el algName parámetro se usó con el modo Federal Information Processing Standards (FIPS) habilitado, pero no es compatible con FIPS.

Comentarios

Los valores posibles para algName son: System.Security.Cryptography.MD5, MD5, System.Security.Cryptography.MD5CryptoServiceProvidery System.Security.Cryptography.MD5Managed.

Consulte también

Se aplica a