Rijndael.Create Méthode

Définition

Crée un objet de chiffrement pour effectuer l’algorithme Rijndael .

Surcharges

Nom Description
Create()

Crée un objet de chiffrement pour effectuer l’algorithme Rijndael .

Create(String)
Obsolète.

Crée un objet de chiffrement pour effectuer l’implémentation spécifiée de l’algorithme Rijndael .

Create()

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

Crée un objet de chiffrement pour effectuer l’algorithme 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

Retours

Objet de chiffrement.

Attributs

Exceptions

L’algorithme a été utilisé avec le mode FIPS (Federal Information Processing Standards) activé, mais n’est pas compatible FIPS.

Remarques

L’implémentation par défaut est RijndaelRijndaelManaged.

Voir aussi

S’applique à

Create(String)

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

Attention

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

Crée un objet de chiffrement pour effectuer l’implémentation spécifiée de l’algorithme 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

Paramètres

algName
String

Nom de l’implémentation spécifique de Rijndael la création.

Retours

Objet de chiffrement.

Attributs

Exceptions

L’algorithme décrit par le algName paramètre a été utilisé avec le mode FIPS (Federal Information Processing Standards) activé, mais n’est pas compatible FIPS.

Remarques

Les valeurs acceptables pour le algName paramètre sont Rijndael et System.Security.Cryptography.RijndaelManaged.

Voir aussi

S’applique à