Rijndael.Create Método
Definição
Importante
Algumas informações dizem respeito a um produto pré-lançado que pode ser substancialmente modificado antes de ser lançado. A Microsoft não faz garantias, de forma expressa ou implícita, em relação à informação aqui apresentada.
Cria um objeto criptográfico para executar o Rijndael algoritmo.
Sobrecargas
| Name | Descrição |
|---|---|
| Create() |
Cria um objeto criptográfico para executar o Rijndael algoritmo. |
| Create(String) |
Obsoleto.
Cria um objeto criptográfico para realizar 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
Devoluções
Um objeto criptográfico.
- Atributos
Exceções
O algoritmo foi usado com o modo Federal Information Processing Standards (FIPS) ativado, mas não é compatível com FIPS.
Observações
A implementação padrão de Rijndael é RijndaelManaged.
Ver também
Aplica-se a
Create(String)
- Origem:
- Rijndael.cs
- Origem:
- Rijndael.cs
- Origem:
- Rijndael.cs
- Origem:
- Rijndael.cs
- Origem:
- Rijndael.cs
Atenção
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 realizar 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
Devoluções
Um objeto criptográfico.
- Atributos
Exceções
O algoritmo descrito pelo algName parâmetro foi usado com o modo Federal Information Processing Standards (FIPS) ativado, mas não é compatível com FIPS.
Observações
Os valores aceitáveis para o algName parâmetro são Rijndael e System.Security.Cryptography.RijndaelManaged.