Rijndael.Create メソッド

定義

Rijndael アルゴリズムを実行する暗号オブジェクトを作成します。

オーバーロード

Create()

Rijndael アルゴリズムを実行する暗号オブジェクトを作成します。

Create(String)
古い.

Rijndael アルゴリズムの特定の実装を実行する暗号オブジェクトを作成します。

Create()

ソース:
Rijndael.cs
ソース:
Rijndael.cs
ソース:
Rijndael.cs

Rijndael アルゴリズムを実行する暗号オブジェクトを作成します。

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

戻り値

暗号オブジェクト。

属性

例外

連邦情報処理標準 (FIPS) モードが有効にされた状態でアルゴリズムが使用されましたが、このアルゴリズムは FIPS 準拠ではありません。

注釈

の既定の Rijndael 実装は です RijndaelManaged

こちらもご覧ください

適用対象

Create(String)

ソース:
Rijndael.cs
ソース:
Rijndael.cs
ソース:
Rijndael.cs

注意事項

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

Rijndael アルゴリズムの特定の実装を実行する暗号オブジェクトを作成します。

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

パラメーター

algName
String

作成する、Rijndael の特定の実装の名前。

戻り値

暗号オブジェクト。

属性

例外

連邦情報処理規格 (FIPS: Federal Information Processing Standard) モードが有効になっていますが、algName パラメーターによって定義されたアルゴリズムは、FIPS 準拠ではありません。

注釈

パラメーターに使用できる値は algNameRijndaelSystem.Security.Cryptography.RijndaelManagedです。

こちらもご覧ください

適用対象