Rijndael.Create Metodo

Definizione

Crea un oggetto crittografico per eseguire l'algoritmo Rijndael .

Overload

Nome Descrizione
Create()

Crea un oggetto crittografico per eseguire l'algoritmo Rijndael .

Create(String)
Obsoleti.

Crea un oggetto crittografico per eseguire l'implementazione specificata dell'algoritmo Rijndael .

Create()

Origine:
Rijndael.cs
Origine:
Rijndael.cs
Origine:
Rijndael.cs
Origine:
Rijndael.cs
Origine:
Rijndael.cs

Crea un oggetto crittografico per eseguire l'algoritmo Rijndael .

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

Valori restituiti

Oggetto crittografico.

Attributi

Eccezioni

L'algoritmo è stato usato con la modalità FIPS (Federal Information Processing Standards), ma non è compatibile con FIPS.

Commenti

L'implementazione predefinita di Rijndael è RijndaelManaged.

Vedi anche

Si applica a

Create(String)

Origine:
Rijndael.cs
Origine:
Rijndael.cs
Origine:
Rijndael.cs
Origine:
Rijndael.cs
Origine:
Rijndael.cs

Attenzione

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

Crea un oggetto crittografico per eseguire l'implementazione specificata dell'algoritmo Rijndael .

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

Parametri

algName
String

Nome dell'implementazione specifica di Rijndael da creare.

Valori restituiti

Oggetto crittografico.

Attributi

Eccezioni

L'algoritmo algName descritto dal parametro è stato usato con la modalità FIPS (Federal Information Processing Standards) abilitata, ma non è compatibile con FIPS.

Commenti

I valori accettabili per il algName parametro sono Rijndael e System.Security.Cryptography.RijndaelManaged.

Vedi anche

Si applica a