RSAPKCS1KeyExchangeDeformatter Constructors

Definition

Initializes a new instance of the RSAPKCS1KeyExchangeDeformatter class.

Overloads

RSAPKCS1KeyExchangeDeformatter()

Initializes a new instance of the RSAPKCS1KeyExchangeDeformatter class.

RSAPKCS1KeyExchangeDeformatter(AsymmetricAlgorithm)

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

RSAPKCS1KeyExchangeDeformatter()

Source:
RSAPKCS1KeyExchangeDeformatter.cs
Source:
RSAPKCS1KeyExchangeDeformatter.cs
Source:
RSAPKCS1KeyExchangeDeformatter.cs

Initializes a new instance of the RSAPKCS1KeyExchangeDeformatter class.

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

Remarks

Use SetKey to establish the key before calling DecryptKeyExchange.

See also

Applies to

RSAPKCS1KeyExchangeDeformatter(AsymmetricAlgorithm)

Source:
RSAPKCS1KeyExchangeDeformatter.cs
Source:
RSAPKCS1KeyExchangeDeformatter.cs
Source:
RSAPKCS1KeyExchangeDeformatter.cs

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

public:
 RSAPKCS1KeyExchangeDeformatter(System::Security::Cryptography::AsymmetricAlgorithm ^ key);
public RSAPKCS1KeyExchangeDeformatter (System.Security.Cryptography.AsymmetricAlgorithm key);
new System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter : System.Security.Cryptography.AsymmetricAlgorithm -> System.Security.Cryptography.RSAPKCS1KeyExchangeDeformatter
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