RsaSecurityKey.GetAsymmetricAlgorithm(String, Boolean) 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取指定的非对称加密算法。
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,表示指定的非对称加密算法。
例外
requiresPrivateKey
为 true
,而私钥不可用。