RSAPKCS1KeyExchangeDeformatter Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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()
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)
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
The instance of the RSA algorithm that holds the private key.
Exceptions
key
is null
.