SymmetricAlgorithm.Create Methode

Definition

Erstellt ein Kryptografieobjekt zum Ausführen des symmetrischen Algorithmus.

Überlädt

Create()
Veraltet.
Veraltet.

Erstellt ein Standardkryptografieobjekt zum Ausführen des symmetrischen Algorithmus.

Create(String)
Veraltet.

Erstellt das angegebene Kryptografieobjekt zum Ausführen des symmetrischen Algorithmus.

Create()

Quelle:
SymmetricAlgorithm.cs
Quelle:
SymmetricAlgorithm.cs
Quelle:
SymmetricAlgorithm.cs

Achtung

The default implementation of this cryptography algorithm is not supported

Achtung

The default implementation of this cryptography algorithm is not supported.

Erstellt ein Standardkryptografieobjekt zum Ausführen des symmetrischen Algorithmus.

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

Gibt zurück

Ein standardmäßiges Kryptografieobjekt zum Ausführen des symmetrischen Algorithmus.

Attribute

Ausnahmen

.NET Core 2.0 – 3.1 und .NET 5 und höher: In allen Fällen.

Hinweise

Diese Methode ist in .NET 5 und höheren Versionen veraltet.

Es wird empfohlen, den Algorithmus anzugeben, indem Sie die Create(String) Überladung dieser Methode aufrufen.

Weitere Informationen

Gilt für:

Create(String)

Quelle:
SymmetricAlgorithm.cs
Quelle:
SymmetricAlgorithm.cs
Quelle:
SymmetricAlgorithm.cs

Achtung

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

Erstellt das angegebene Kryptografieobjekt zum Ausführen des symmetrischen Algorithmus.

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

Parameter

algName
String

Der Name der angegebenen Implementierung der zu verwendenden SymmetricAlgorithm-Klasse.

Gibt zurück

Ein Kryptografieobjekt zum Ausführen des symmetrischen Algorithmus.

Attribute

Weitere Informationen

Gilt für: