RSAOAEPKeyExchangeFormatter.SetKey(AsymmetricAlgorithm) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
設定要用於將金鑰交換資料加密的公開金鑰。
public:
override void SetKey(System::Security::Cryptography::AsymmetricAlgorithm ^ key);
public override void SetKey (System.Security.Cryptography.AsymmetricAlgorithm key);
override this.SetKey : System.Security.Cryptography.AsymmetricAlgorithm -> unit
Public Overrides Sub SetKey (key As AsymmetricAlgorithm)
參數
保存公開金鑰的 RSA 演算法執行個體。
例外狀況
key
為 null
。
範例
下列程式代碼範例示範如何使用 SetKey 方法來設定 RSA 金鑰以進行解密。 此程式代碼範例是針對 類別提供的較大範例的 RSAOAEPKeyExchangeFormatter 一部分。
RSA^ key = RSA::Create();
rsaFormatter->SetKey( key );
RSA key = RSA.Create();
rsaFormatter.SetKey(key);
Dim key As RSA = RSA.Create()
rsaFormatter.SetKey(key)
備註
您必須先設定金鑰,才能呼叫 CreateKeyExchange。