Język

Rijndael.Create Metoda

Definicja

Tworzy obiekt kryptograficzny do wykonania algorytmu Rijndael .

Przeciążenia

Nazwa Opis
Create()

Tworzy obiekt kryptograficzny do wykonania algorytmu Rijndael .

Create(String)
Przestarzałe.

Tworzy obiekt kryptograficzny w celu wykonania określonej implementacji algorytmu Rijndael .

Create()

Źródło:
Rijndael.cs
Źródło:
Rijndael.cs
Źródło:
Rijndael.cs
Źródło:
Rijndael.cs
Źródło:
Rijndael.cs

Tworzy obiekt kryptograficzny do wykonania algorytmu 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

Zwraca

Obiekt kryptograficzny.

Atrybuty

Wyjątki

Algorytm był używany z włączonym trybem Federal Information Processing Standards (FIPS), ale nie jest zgodny ze standardem FIPS.

Uwagi

Domyślna implementacja elementu Rijndael to RijndaelManaged.

Zobacz też

Dotyczy

Create(String)

Źródło:
Rijndael.cs
Źródło:
Rijndael.cs
Źródło:
Rijndael.cs
Źródło:
Rijndael.cs
Źródło:
Rijndael.cs

Uwaga

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

Tworzy obiekt kryptograficzny w celu wykonania określonej implementacji algorytmu 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

Parametry

algName
String

Nazwa konkretnej implementacji do utworzenia Rijndael .

Zwraca

Obiekt kryptograficzny.

Atrybuty

Wyjątki

Algorytm opisany przez algName parametr został użyty z włączonym trybem Federal Information Processing Standards (FIPS), ale nie jest zgodny ze standardem FIPS.

Uwagi

Dopuszczalne wartości parametru algName to Rijndael i System.Security.Cryptography.RijndaelManaged.

Zobacz też

Dotyczy