AsymmetricKeyExchangeDeformatter.SetKey(AsymmetricAlgorithm) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在衍生類別中覆寫時,設定要用來解密機密資訊的私密金鑰。
public:
abstract void SetKey(System::Security::Cryptography::AsymmetricAlgorithm ^ key);
public abstract void SetKey (System.Security.Cryptography.AsymmetricAlgorithm key);
abstract member SetKey : System.Security.Cryptography.AsymmetricAlgorithm -> unit
Public MustOverride Sub SetKey (key As AsymmetricAlgorithm)
參數
包含私密金鑰之 AsymmetricAlgorithm 實作的執行個體。
範例
下列程式代碼範例示範如何覆寫 SetKey 來設定加密作業的公鑰。 此程式代碼範例是針對 類別提供的較大範例的 AsymmetricKeyExchangeDeformatter 一部分。
public override void SetKey(AsymmetricAlgorithm key)
{
if (key != null)
{
_rsaKey = (RSA)key;
}
else
{
throw new ArgumentNullException(nameof(key));
}
}
Public Overrides Sub SetKey(ByVal key As AsymmetricAlgorithm)
If (Not key Is Nothing) Then
rsaKey = CType(key, RSA)
Else
Throw New ArgumentNullException("key")
End If
End Sub
備註
您必須先設定索引鍵,才能呼叫實作 DecryptKeyExchange 。