HashAlgorithm.Create メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
ハッシュ アルゴリズムの実装のインスタンスを作成します。
オーバーロード
Create() |
古い.
古い.
ハッシュ アルゴリズムの既定の実装のインスタンスを作成します。 |
Create(String) |
古い.
ハッシュ アルゴリズムの指定された実装のインスタンスを作成します。 |
Create()
- ソース:
- HashAlgorithm.cs
- ソース:
- HashAlgorithm.cs
- ソース:
- HashAlgorithm.cs
注意事項
The default implementation of this cryptography algorithm is not supported
注意事項
The default implementation of this cryptography algorithm is not supported.
ハッシュ アルゴリズムの既定の実装のインスタンスを作成します。
public:
static System::Security::Cryptography::HashAlgorithm ^ Create();
[System.Obsolete("The default implementation of this cryptography algorithm is not supported", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.HashAlgorithm Create ();
[System.Obsolete("The default implementation of this cryptography algorithm is not supported.", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
public static System.Security.Cryptography.HashAlgorithm Create ();
public static System.Security.Cryptography.HashAlgorithm Create ();
[<System.Obsolete("The default implementation of this cryptography algorithm is not supported", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : unit -> System.Security.Cryptography.HashAlgorithm
[<System.Obsolete("The default implementation of this cryptography algorithm is not supported.", DiagnosticId="SYSLIB0007", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
static member Create : unit -> System.Security.Cryptography.HashAlgorithm
static member Create : unit -> System.Security.Cryptography.HashAlgorithm
Public Shared Function Create () As HashAlgorithm
戻り値
既定の設定が変更されていない限り、新しい SHA1CryptoServiceProvider インスタンス。
- 属性
例外
.NET Core 2.0 - 3.1 および .NET 5 以降: すべての場合。
注釈
このメソッドは、.NET 5 以降のバージョンでは廃止されています。
既定では、このオーバーロードではハッシュ アルゴリズムの実装が使用 SHA1CryptoServiceProvider されます。 別の実装を指定する場合は、 オーバーロードを Create(String) 使用します。これにより、代わりにアルゴリズム名を指定できます。 暗号化構成システムでは、 の既定の実装 HashAlgorithmが定義されています。
SHA1 との競合問題のため、Microsoft では SHA256 以上に基づくセキュリティ モデルを推奨しています。
適用対象
Create(String)
- ソース:
- HashAlgorithm.cs
- ソース:
- HashAlgorithm.cs
- ソース:
- HashAlgorithm.cs
注意事項
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
ハッシュ アルゴリズムの指定された実装のインスタンスを作成します。
public:
static System::Security::Cryptography::HashAlgorithm ^ Create(System::String ^ hashName);
public static System.Security.Cryptography.HashAlgorithm? Create (string hashName);
[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.HashAlgorithm? Create (string hashName);
public static System.Security.Cryptography.HashAlgorithm Create (string hashName);
static member Create : string -> System.Security.Cryptography.HashAlgorithm
[<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.HashAlgorithm
Public Shared Function Create (hashName As String) As HashAlgorithm
パラメーター
- hashName
- String
使用するハッシュ アルゴリズムの実装。
hashName
パラメーターの有効値、およびそれらの割り当て先のアルゴリズムを次の表に示します。
パラメーター値 | は |
---|---|
SHA | SHA1CryptoServiceProvider |
SHA1 | SHA1CryptoServiceProvider |
System.Security.Cryptography.SHA1 | SHA1CryptoServiceProvider |
System.Security.Cryptography.HashAlgorithm | SHA1CryptoServiceProvider |
MD5 | MD5CryptoServiceProvider |
System.Security.Cryptography.MD5 | MD5CryptoServiceProvider |
SHA256 | SHA256Managed |
SHA-256 | SHA256Managed |
System.Security.Cryptography.SHA256 | SHA256Managed |
SHA384 | SHA384Managed |
SHA-384 | SHA384Managed |
System.Security.Cryptography.SHA384 | SHA384Managed |
SHA512 | SHA512Managed |
SHA-512 | SHA512Managed |
System.Security.Cryptography.SHA512 | SHA512Managed |
戻り値
指定したハッシュ アルゴリズムの新しいインスタンス。hashName
が有効なハッシュ アルゴリズムでない場合は、null
。
- 属性
適用対象
.NET