Aes.Create メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
対称アルゴリズムの実行に使用される暗号化オブジェクトを作成します。
オーバーロード
| 名前 | 説明 |
|---|---|
| Create() |
対称アルゴリズムの実行に使用される暗号化オブジェクトを作成します。 |
| Create(String) |
古い.
対称アルゴリズムの実行に使用する AES の実装を指定する暗号化オブジェクトを作成します。 |
Create()
- ソース:
- Aes.cs
- ソース:
- Aes.cs
- ソース:
- Aes.cs
- ソース:
- Aes.cs
- ソース:
- Aes.cs
対称アルゴリズムの実行に使用される暗号化オブジェクトを作成します。
public:
static System::Security::Cryptography::Aes ^ Create();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.Aes Create();
public static System.Security.Cryptography.Aes Create();
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.Aes
static member Create : unit -> System.Security.Cryptography.Aes
Public Shared Function Create () As Aes
返品
対称アルゴリズムの実行に使用される暗号化オブジェクト。
- 属性
適用対象
Create(String)
- ソース:
- Aes.cs
- ソース:
- Aes.cs
- ソース:
- Aes.cs
- ソース:
- Aes.cs
- ソース:
- Aes.cs
注意事項
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
対称アルゴリズムの実行に使用する AES の実装を指定する暗号化オブジェクトを作成します。
public:
static System::Security::Cryptography::Aes ^ Create(System::String ^ algorithmName);
[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.Aes? Create(string algorithmName);
public static System.Security.Cryptography.Aes? Create(string algorithmName);
[System.Diagnostics.CodeAnalysis.RequiresUnreferencedCode("The default algorithm implementations might be removed, use strong type references like 'RSA.Create()' instead.")]
public static System.Security.Cryptography.Aes? Create(string algorithmName);
public static System.Security.Cryptography.Aes Create(string algorithmName);
[<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.Aes
static member Create : string -> System.Security.Cryptography.Aes
[<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.Aes
Public Shared Function Create (algorithmName As String) As Aes
パラメーター
- algorithmName
- String
使用する AES の特定の実装の名前。
返品
対称アルゴリズムの実行に使用される暗号化オブジェクト。
- 属性
例外
algorithmName パラメーターはnull。
注釈
使用可能な algorithmName 値は、"AES"、"AesCryptoServiceProvider"、"System.Security.Cryptography.AesCryptoServiceProvider"、"AesManaged"、"System.Security.Cryptography.AesManaged" です。