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 kryptografisches Objekt zum Ausführen des Rijndael Algorithmus.
Überlädt
| Name | Beschreibung |
|---|---|
| Create() |
Erstellt ein kryptografisches Objekt zum Ausführen des Rijndael Algorithmus. |
| Create(String) |
Veraltet.
Erstellt ein kryptografisches Objekt, um die angegebene Implementierung des Rijndael Algorithmus auszuführen. |
Create()
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
Erstellt ein kryptografisches Objekt zum Ausführen des Rijndael Algorithmus.
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
Gibt zurück
Ein kryptografisches Objekt.
- Attribute
Ausnahmen
Der Algorithmus wurde mit aktivierten FIPS-Modus (Federal Information Processing Standards) verwendet, ist jedoch nicht FIPS kompatibel.
Hinweise
Die Standardimplementierung lautet RijndaelRijndaelManaged.
Weitere Informationen
Gilt für:
Create(String)
- Quelle:
- Rijndael.cs
- Quelle:
- Rijndael.cs
- 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 kryptografisches Objekt, um die angegebene Implementierung des Rijndael Algorithmus auszuführen.
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
Parameter
Gibt zurück
Ein kryptografisches Objekt.
- Attribute
Ausnahmen
Der vom algName Parameter beschriebene Algorithmus wurde mit aktivierten FIPS-Modus (Federal Information Processing Standards) verwendet, ist jedoch nicht kompatibel.
Hinweise
Zulässige Werte für den algName Parameter sind Rijndael und System.Security.Cryptography.RijndaelManaged.