RSAOAEPKeyExchangeDeformatter Constructors

Definition

Initializes a new instance of the RSAOAEPKeyExchangeDeformatter class.

Overloads

RSAOAEPKeyExchangeDeformatter()

Initializes a new instance of the RSAOAEPKeyExchangeDeformatter class.

RSAOAEPKeyExchangeDeformatter(AsymmetricAlgorithm)

Initializes a new instance of the RSAOAEPKeyExchangeDeformatter class with the specified key.

RSAOAEPKeyExchangeDeformatter()

Source:
RSAOAEPKeyExchangeDeformatter.cs
Source:
RSAOAEPKeyExchangeDeformatter.cs
Source:
RSAOAEPKeyExchangeDeformatter.cs

Initializes a new instance of the RSAOAEPKeyExchangeDeformatter class.

public:
 RSAOAEPKeyExchangeDeformatter();
public RSAOAEPKeyExchangeDeformatter ();
Public Sub New ()

Remarks

Use SetKey to establish the key before calling DecryptKeyExchange.

See also

Applies to

RSAOAEPKeyExchangeDeformatter(AsymmetricAlgorithm)

Source:
RSAOAEPKeyExchangeDeformatter.cs
Source:
RSAOAEPKeyExchangeDeformatter.cs
Source:
RSAOAEPKeyExchangeDeformatter.cs

Initializes a new instance of the RSAOAEPKeyExchangeDeformatter class with the specified key.

public:
 RSAOAEPKeyExchangeDeformatter(System::Security::Cryptography::AsymmetricAlgorithm ^ key);
public RSAOAEPKeyExchangeDeformatter (System.Security.Cryptography.AsymmetricAlgorithm key);
new System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter : System.Security.Cryptography.AsymmetricAlgorithm -> System.Security.Cryptography.RSAOAEPKeyExchangeDeformatter
Public Sub New (key As AsymmetricAlgorithm)

Parameters

key
AsymmetricAlgorithm

The instance of the RSA algorithm that holds the private key.

Exceptions

key is null.

See also

Applies to