SymmetricAlgorithm.Create Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Crée un objet de chiffrement pour exécuter l'algorithme symétrique.
Surcharges
Create() |
Obsolète.
Obsolète.
Crée un objet de chiffrement par défaut utilisé pour exécuter l'algorithme symétrique. |
Create(String) |
Obsolète.
Crée l'objet de chiffrement spécifié utilisé pour exécuter l'algorithme symétrique. |
Create()
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
Attention
The default implementation of this cryptography algorithm is not supported
Attention
The default implementation of this cryptography algorithm is not supported.
Crée un objet de chiffrement par défaut utilisé pour exécuter l'algorithme symétrique.
public:
static System::Security::Cryptography::SymmetricAlgorithm ^ Create();
[System.Obsolete("The default implementation of this cryptography algorithm is not supported", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.SymmetricAlgorithm Create ();
[System.Obsolete("The default implementation of this cryptography algorithm is not supported.", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.SymmetricAlgorithm Create ();
public static System.Security.Cryptography.SymmetricAlgorithm Create ();
[<System.Obsolete("The default implementation of this cryptography algorithm is not supported", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : unit -> System.Security.Cryptography.SymmetricAlgorithm
[<System.Obsolete("The default implementation of this cryptography algorithm is not supported.", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : unit -> System.Security.Cryptography.SymmetricAlgorithm
static member Create : unit -> System.Security.Cryptography.SymmetricAlgorithm
Public Shared Function Create () As SymmetricAlgorithm
Retours
Objet de chiffrement par défaut utilisé pour exécuter l'algorithme symétrique.
- Attributs
Exceptions
.NET Core 2.0 - 3.1 et .NET 5 et versions ultérieures : dans tous les cas.
Remarques
Cette méthode est obsolète dans .NET 5 et versions ultérieures.
Nous vous recommandons de spécifier l’algorithme en appelant la Create(String) surcharge de cette méthode.
Voir aussi
S’applique à
Create(String)
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
- Source:
- SymmetricAlgorithm.cs
Attention
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
Crée l'objet de chiffrement spécifié utilisé pour exécuter l'algorithme symétrique.
public:
static System::Security::Cryptography::SymmetricAlgorithm ^ Create(System::String ^ algName);
public static System.Security.Cryptography.SymmetricAlgorithm? Create (string algName);
[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.SymmetricAlgorithm? Create (string algName);
public static System.Security.Cryptography.SymmetricAlgorithm Create (string algName);
static member Create : string -> System.Security.Cryptography.SymmetricAlgorithm
[<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.SymmetricAlgorithm
Public Shared Function Create (algName As String) As SymmetricAlgorithm
Paramètres
- algName
- String
Nom de l'implémentation spécifique de la classe SymmetricAlgorithm à utiliser.
Retours
Objet de chiffrement utilisé pour exécuter l'algorithme symétrique.
- Attributs