SHA256.Create 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
允許執行個體化這個抽象類別的指定實作。
多載
Create() |
建立 SHA256 的預設實作的執行個體。 |
Create(String) |
已淘汰.
建立 SHA256 的指定實作的執行個體。 |
Create()
- 來源:
- SHA256.cs
- 來源:
- SHA256.cs
- 來源:
- SHA256.cs
建立 SHA256 的預設實作的執行個體。
public:
static System::Security::Cryptography::SHA256 ^ Create();
public static System.Security.Cryptography.SHA256 Create ();
static member Create : unit -> System.Security.Cryptography.SHA256
Public Shared Function Create () As SHA256
傳回
SHA256 的新執行個體。 在 .NET Framework 中,如果 FIPS 模式停用,此方法會建立 SHA256Managed 類別的執行個體;如果 FIPS 模式作用中,它會建立 SHA256Cng 類別的執行個體。 在 .NET Core 中,它會傳回衍生自 SHA256 的私用類別執行個體。
例外狀況
僅限 .NET Framework 4.6.1 及較舊版本:在已啟用美國聯邦資訊處理標準 (FIPS) 模式的情況下使用演算法,但它與 FIPS 不相容。
另請參閱
適用於
Create(String)
- 來源:
- SHA256.cs
- 來源:
- SHA256.cs
- 來源:
- SHA256.cs
警告
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
建立 SHA256 的指定實作的執行個體。
public:
static System::Security::Cryptography::SHA256 ^ Create(System::String ^ hashName);
public static System.Security.Cryptography.SHA256? 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.SHA256? Create (string hashName);
public static System.Security.Cryptography.SHA256 Create (string hashName);
static member Create : string -> System.Security.Cryptography.SHA256
[<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.SHA256
Public Shared Function Create (hashName As String) As SHA256
參數
傳回
SHA256 的新執行個體,使用指定實作。
- 屬性
例外狀況
僅限 .NET Framework:FIPS 模式已啟用,但 hashName
要求 SHA256Managed,這與 FIPS 不相容。
備註
.NET Framework 包含實作及其相關聯的 hashName 值:
實作 | hashName |
---|---|
SHA256Managed | SHA256 SHA-256 System.Security.Cryptography.SHA256 |
SHA256Cng | System.Security.Cryptography.SHA256Cng |
SHA256CryptoServiceProvider | System.Security.Cryptography.SHA256CryptoServiceProvider |