RSAOAEPKeyExchangeDeformatter 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 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()
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)
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
The instance of the RSA algorithm that holds the private key.
Exceptions
key
is null
.