Rijndael.Create Methode
Definition
Wichtig
Einige Informationen beziehen sich auf Vorabversionen, die vor dem Release ggf. grundlegend überarbeitet werden. Microsoft übernimmt hinsichtlich der hier bereitgestellten Informationen keine Gewährleistungen, seien sie ausdrücklich oder konkludent.
Erstellt ein Kryptografieobjekt zum Ausführen des Rijndael-Algorithmus.
Überlädt
Create() |
Erstellt ein Kryptografieobjekt zum Ausführen des Rijndael-Algorithmus. |
Create(String) |
Veraltet.
Erstellt ein Kryptografieobjekts, um die angegebene Implementierung des Rijndael-Algorithmus auszuführen. |
Create()
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
Erstellt ein Kryptografieobjekt zum Ausführen des Rijndael-Algorithmus.
public:
static System::Security::Cryptography::Rijndael ^ Create();
public static System.Security.Cryptography.Rijndael Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.Rijndael Create ();
static member Create : unit -> System.Security.Cryptography.Rijndael
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.Rijndael
Public Shared Function Create () As Rijndael
Gibt zurück
Ein Kryptografieobjekt.
- Attribute
Ausnahmen
Der Algorithmus wurde bei aktiviertem FIPS (Federal Information Processing Standards)-Modus verwendet, ist aber nicht FIPS-kompatibel.
Hinweise
Die Standardimplementierung von Rijndael ist RijndaelManaged.
Weitere Informationen
Gilt für:
Create(String)
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
Achtung
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
Erstellt ein Kryptografieobjekts, um die angegebene Implementierung des Rijndael-Algorithmus auszuführen.
public:
static System::Security::Cryptography::Rijndael ^ Create(System::String ^ algName);
public static System.Security.Cryptography.Rijndael? 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.Rijndael? Create (string algName);
public static System.Security.Cryptography.Rijndael Create (string algName);
static member Create : string -> System.Security.Cryptography.Rijndael
[<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
Public Shared Function Create (algName As String) As Rijndael
Parameter
Gibt zurück
Ein Kryptografieobjekt.
- Attribute
Ausnahmen
Der durch den algName
-Parameter beschriebene Algorithmus wurde bei aktiviertem FIPS-Modus (Federal Information Processing Standards) verwendet, ist aber nicht FIPS-kompatibel.
Hinweise
Zulässige Werte für den algName
Parameter sind Rijndael
und System.Security.Cryptography.RijndaelManaged
.