RsaSecurityKey.GetAsymmetricAlgorithm(String, Boolean) 方法

定义

获取指定的非对称加密算法。

public:
 override System::Security::Cryptography::AsymmetricAlgorithm ^ GetAsymmetricAlgorithm(System::String ^ algorithm, bool requiresPrivateKey);
public override System.Security.Cryptography.AsymmetricAlgorithm GetAsymmetricAlgorithm (string algorithm, bool requiresPrivateKey);
override this.GetAsymmetricAlgorithm : string * bool -> System.Security.Cryptography.AsymmetricAlgorithm
Public Overrides Function GetAsymmetricAlgorithm (algorithm As String, requiresPrivateKey As Boolean) As AsymmetricAlgorithm

参数

algorithm
String

要创建的非对称算法。

requiresPrivateKey
Boolean

如果需要使用私钥来创建算法,则为 true;否则为 false

返回

一个 AsymmetricAlgorithm,表示指定的非对称加密算法。

例外

requiresPrivateKeytrue,而私钥不可用。

适用于