SHA1.Create メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
この抽象クラスの特定の実装をインスタンス化できるようにします。
オーバーロード
Create() |
SHA1 の既定の実装のインスタンスを作成します。 |
Create(String) |
古い.
SHA1 の指定した実装のインスタンスを作成します。 |
Create()
- ソース:
- SHA1.cs
- ソース:
- SHA1.cs
- ソース:
- SHA1.cs
SHA1 の既定の実装のインスタンスを作成します。
public:
static System::Security::Cryptography::SHA1 ^ Create();
public static System.Security.Cryptography.SHA1 Create ();
static member Create : unit -> System.Security.Cryptography.SHA1
Public Shared Function Create () As SHA1
戻り値
SHA1 の新しいインスタンス。
注釈
の既定の SHA1 実装は です SHA1CryptoServiceProvider。
こちらもご覧ください
適用対象
Create(String)
- ソース:
- SHA1.cs
- ソース:
- SHA1.cs
- ソース:
- SHA1.cs
注意事項
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
SHA1 の指定した実装のインスタンスを作成します。
public:
static System::Security::Cryptography::SHA1 ^ Create(System::String ^ hashName);
public static System.Security.Cryptography.SHA1? 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.SHA1? Create (string hashName);
public static System.Security.Cryptography.SHA1 Create (string hashName);
static member Create : string -> System.Security.Cryptography.SHA1
[<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.SHA1
Public Shared Function Create (hashName As String) As SHA1
パラメーター
戻り値
SHA1 の指定した実装を使用する新しいインスタンス。
- 属性
注釈
SHA1 との競合問題のため、Microsoft では SHA256 以上に基づくセキュリティ モデルを推奨しています。
こちらもご覧ください
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET