RSA.Create 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
允許執行個體化 RSA 的特定實作。
多載
Create() |
建立 RSA 演算法之預設實作的執行個體。 |
Create(Int32) |
使用指定的金鑰大小建立新的暫時 RSA 金鑰。 |
Create(RSAParameters) |
以指定的 RSA 金鑰參數建立新的暫時 RSA 金鑰。 |
Create(String) |
已淘汰.
建立 RSA 之指定實作的執行個體。 |
Create()
建立 RSA 演算法之預設實作的執行個體。
public:
static System::Security::Cryptography::RSA ^ Create();
public static System.Security.Cryptography.RSA Create ();
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create ();
static member Create : unit -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : unit -> System.Security.Cryptography.RSA
Public Shared Function Create () As RSA
傳回
RSA 之預設實作的新執行個體。
- 屬性
另請參閱
適用於
Create(Int32)
- 來源:
- RSA.cs
- 來源:
- RSA.cs
- 來源:
- RSA.cs
使用指定的金鑰大小建立新的暫時 RSA 金鑰。
public:
static System::Security::Cryptography::RSA ^ Create(int keySizeInBits);
public static System.Security.Cryptography.RSA Create (int keySizeInBits);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create (int keySizeInBits);
static member Create : int -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : int -> System.Security.Cryptography.RSA
Public Shared Function Create (keySizeInBits As Integer) As RSA
參數
- keySizeInBits
- Int32
金鑰大小 (位元)。
傳回
具有指定金鑰大小的新暫時 RSA 金鑰。
- 屬性
例外狀況
預設實作不支援 keySizeInBits
。
適用於
Create(RSAParameters)
- 來源:
- RSA.cs
- 來源:
- RSA.cs
- 來源:
- RSA.cs
以指定的 RSA 金鑰參數建立新的暫時 RSA 金鑰。
public:
static System::Security::Cryptography::RSA ^ Create(System::Security::Cryptography::RSAParameters parameters);
public static System.Security.Cryptography.RSA Create (System.Security.Cryptography.RSAParameters parameters);
[System.Runtime.Versioning.UnsupportedOSPlatform("browser")]
public static System.Security.Cryptography.RSA Create (System.Security.Cryptography.RSAParameters parameters);
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
[<System.Runtime.Versioning.UnsupportedOSPlatform("browser")>]
static member Create : System.Security.Cryptography.RSAParameters -> System.Security.Cryptography.RSA
Public Shared Function Create (parameters As RSAParameters) As RSA
參數
- parameters
- RSAParameters
RSA 演算法的參數。
傳回
新的暫時 RSA 金鑰。
- 屬性
例外狀況
parameters
不代表有效的 RSA 金鑰。
另請參閱
適用於
Create(String)
- 來源:
- RSA.cs
- 來源:
- RSA.cs
- 來源:
- RSA.cs
警告
Cryptographic factory methods accepting an algorithm name are obsolete. Use the parameterless Create factory method on the algorithm type instead.
建立 RSA 之指定實作的執行個體。
public:
static System::Security::Cryptography::RSA ^ Create(System::String ^ algName);
public static System.Security.Cryptography.RSA? 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.RSA? Create (string algName);
public static System.Security.Cryptography.RSA Create (string algName);
static member Create : string -> System.Security.Cryptography.RSA
[<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.RSA
Public Shared Function Create (algName As String) As RSA
參數
傳回
指定之 RSA 實作的新執行個體。
- 屬性