Rijndael.Create メソッド

定義

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

オーバーロード

名前 説明
Create()

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

Create(String)
古い.

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

Create()

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

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

返品

暗号化オブジェクト。

属性

例外

このアルゴリズムは Federal Information Processing Standards (FIPS) モードが有効になっている状態で使用されましたが、FIPS 互換ではありません。

注釈

Rijndaelの既定の実装はRijndaelManaged

こちらもご覧ください

適用対象

Create(String)

ソース:
Rijndael.cs
ソース:
Rijndael.cs
ソース:
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);
[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

パラメーター

algName
String

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

返品

暗号化オブジェクト。

属性

例外

algName パラメーターで記述されたアルゴリズムは、Federal Information Processing Standards (FIPS) モードが有効になっている状態で使用されましたが、FIPS 互換ではありません。

注釈

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

こちらもご覧ください

適用対象