Rijndael.Create Método

Definição

Cria um objeto criptográfico para executar o Rijndael algoritmo.

Sobrecargas

Nome Description
Create()

Cria um objeto criptográfico para executar o Rijndael algoritmo.

Create(String)
Obsoleto.

Cria um objeto criptográfico para executar a implementação especificada do Rijndael algoritmo.

Create()

Origem:
Rijndael.cs
Origem:
Rijndael.cs
Origem:
Rijndael.cs
Origem:
Rijndael.cs
Origem:
Rijndael.cs

Cria um objeto criptográfico para executar o Rijndael algoritmo.

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

Retornos

Um objeto criptográfico.

Atributos

Exceções

O algoritmo foi usado com o modo FIPS (Federal Information Processing Standards) habilitado, mas não é compatível com FIPS.

Comentários

A implementação Rijndael padrão é RijndaelManaged.

Confira também

Aplica-se a

Create(String)

Origem:
Rijndael.cs
Origem:
Rijndael.cs
Origem:
Rijndael.cs
Origem:
Rijndael.cs
Origem:
Rijndael.cs

Cuidado

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

Cria um objeto criptográfico para executar a implementação especificada do Rijndael algoritmo.

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

Parâmetros

algName
String

O nome da implementação específica de Rijndael criar.

Retornos

Um objeto criptográfico.

Atributos

Exceções

O algoritmo descrito pelo parâmetro foi usado com o algName modo FIPS (Federal Information Processing Standards) habilitado, mas não é compatível com FIPS.

Comentários

Valores aceitáveis para o algName parâmetro são Rijndael e System.Security.Cryptography.RijndaelManaged.

Confira também

Aplica-se a