Rijndael.Create 方法

定義

建立密碼編譯物件,執行 Rijndael 演算法。

多載

Create()

建立密碼編譯物件,執行 Rijndael 演算法。

Create(String)
已淘汰.

建立密碼編譯物件,執行 Rijndael 演算法的指定實作。

Create()

來源:
Rijndael.cs
來源:
Rijndael.cs
來源:
Rijndael.cs

建立密碼編譯物件,執行 Rijndael 演算法。

public:
 static System::Security::Cryptography::Rijndael ^ Create();
public static System.Security.Cryptography.Rijndael Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.Rijndael Create ();
static member Create : unit -> System.Security.Cryptography.Rijndael
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.Rijndael
Public Shared Function Create () As Rijndael

傳回

密碼編譯物件。

屬性

例外狀況

在已啟用美國聯邦資訊處理標準 (FIPS) 模式的情況下使用演算法,但它與 FIPS 不相容。

備註

預設實作 RijndaelRijndaelManaged

另請參閱

適用於

Create(String)

來源:
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);
public static System.Security.Cryptography.Rijndael? Create (string algName);
[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);
static member Create : string -> System.Security.Cryptography.Rijndael
[<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
Public Shared Function Create (algName As String) As Rijndael

參數

algName
String

要建立的 Rijndael 指定實作名稱。

傳回

密碼編譯物件。

屬性

例外狀況

algName 參數描述的演算法,在聯邦資訊處理標準 (FIPS) 模式啟用的情況下使用,但是和 FIPS 並不相容。

備註

參數Rijndael可接受的algName值為 和 System.Security.Cryptography.RijndaelManaged

另請參閱

適用於