Rijndael.Create Metoda

Definice

Vytvoří kryptografický objekt pro provedení Rijndael algoritmu.

Přetížení

Create()

Vytvoří kryptografický objekt pro provedení Rijndael algoritmu.

Create(String)
Zastaralé.

Vytvoří kryptografický objekt pro provedení zadané implementace Rijndael algoritmu.

Create()

Zdroj:
Rijndael.cs
Zdroj:
Rijndael.cs
Zdroj:
Rijndael.cs

Vytvoří kryptografický objekt pro provedení Rijndael algoritmu.

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

Návraty

Kryptografický objekt.

Atributy

Výjimky

Algoritmus byl použit s povoleným režimem FIPS (Federal Information Processing Standards), ale není kompatibilní s FIPS.

Poznámky

Výchozí implementace je RijndaelRijndaelManaged.

Viz také

Platí pro

Create(String)

Zdroj:
Rijndael.cs
Zdroj:
Rijndael.cs
Zdroj:
Rijndael.cs

Upozornění

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

Vytvoří kryptografický objekt pro provedení zadané implementace Rijndael algoritmu.

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

Parametry

algName
String

Název konkrétní implementace, která Rijndael se má vytvořit.

Návraty

Kryptografický objekt.

Atributy

Výjimky

Algoritmus popsaný parametrem byl použit s povoleným režimem algName FIPS (Federal Information Processing Standards), ale není kompatibilní s FIPS.

Poznámky

Přijatelné hodnoty pro algName parametr jsou Rijndael a System.Security.Cryptography.RijndaelManaged.

Viz také

Platí pro