Aes.Create Método

Definición

Crea un objeto criptográfico que se usa para realizar el algoritmo simétrico.

Sobrecargas

Nombre Description
Create()

Crea un objeto criptográfico que se usa para realizar el algoritmo simétrico.

Create(String)
Obsoletos.

Crea un objeto criptográfico que especifica la implementación de AES que se va a usar para realizar el algoritmo simétrico.

Create()

Source:
Aes.cs
Source:
Aes.cs
Source:
Aes.cs
Source:
Aes.cs
Source:
Aes.cs

Crea un objeto criptográfico que se usa para realizar el algoritmo simétrico.

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

Devoluciones

Aes

Objeto criptográfico que se usa para realizar el algoritmo simétrico.

Atributos

Se aplica a

Create(String)

Source:
Aes.cs
Source:
Aes.cs
Source:
Aes.cs
Source:
Aes.cs
Source:
Aes.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 que especifica la implementación de AES que se va a usar para realizar el algoritmo simétrico.

public:
 static System::Security::Cryptography::Aes ^ Create(System::String ^ algorithmName);
[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.Aes? Create(string algorithmName);
public static System.Security.Cryptography.Aes? Create(string algorithmName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
public static System.Security.Cryptography.Aes? Create(string algorithmName);
public static System.Security.Cryptography.Aes Create(string algorithmName);
[<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.Aes
static member Create : string -> System.Security.Cryptography.Aes
[<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.Aes
Public Shared Function Create (algorithmName As String) As Aes

Parámetros

algorithmName
String

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

Devoluciones

Aes

Objeto criptográfico que se usa para realizar el algoritmo simétrico.

Atributos

Excepciones

El algorithmName parámetro es null.

Comentarios

Los valores posibles algorithmName son: "AES", "AesCryptoServiceProvider", "System.Security.Cryptography.AesCryptoServiceProvider", "AesManaged" y "System.Security.Cryptography.AesManaged".

Se aplica a