Rijndael.Create Método

Definición

Crea un objeto criptográfico para realizar el algoritmo Rijndael.

Sobrecargas

Create()

Crea un objeto criptográfico para realizar el algoritmo Rijndael.

Create(String)
Obsoletos.

Crea un objeto criptográfico para ejecutar la implementación especificada del algoritmo Rijndael.

Create()

Source:
Rijndael.cs
Source:
Rijndael.cs
Source:
Rijndael.cs

Crea un objeto criptográfico para realizar el algoritmo Rijndael.

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

Devoluciones

Objeto criptográfico.

Atributos

Excepciones

El algoritmo se usó con el modo FIPS (Estándar federal de procesamiento de información) habilitado, pero no es compatible con FIPS.

Comentarios

La implementación predeterminada de Rijndael es RijndaelManaged.

Consulte también

Se aplica a

Create(String)

Source:
Rijndael.cs
Source:
Rijndael.cs
Source:
Rijndael.cs

Precaución

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

Crea un objeto criptográfico para ejecutar la implementación especificada del algoritmo Rijndael.

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

Parámetros

algName
String

Nombre de la implementación específica de Rijndael que se va a crear.

Devoluciones

Objeto criptográfico.

Atributos

Excepciones

Se utilizó el algoritmo descrito por el parámetro algName con el modo FIPS (Estándar federal de procesamiento de información) habilitado, pero no es compatible con FIPS.

Comentarios

Los valores aceptables para el algName parámetro son Rijndael y System.Security.Cryptography.RijndaelManaged.

Consulte también

Se aplica a