X509AsymmetricSecurityKey.EncryptKey(String, Byte[]) Method
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.
Encrypts the specified encrypted key using the specified cryptographic algorithm.
public:
override cli::array <System::Byte> ^ EncryptKey(System::String ^ algorithm, cli::array <System::Byte> ^ keyData);
public override byte[] EncryptKey (string algorithm, byte[] keyData);
override this.EncryptKey : string * byte[] -> byte[]
Public Overrides Function EncryptKey (algorithm As String, keyData As Byte()) As Byte()
Parameters
- algorithm
- String
The cryptographic algorithm to encrypt the key.
Returns
An array of Byte that contains the encrypted key.
Exceptions
The X.509 certificate specified in the constructor has a public key that was not generated using the RSA algorithm.
-or-
The algorithm
parameter is not supported. The supported algorithms are XmlEncRSA15Url and XmlEncRSAOAEPUrl.
Remarks
Use the XmlEncRSA15Url or XmlEncRSAOAEPUrl fields to specify the algorithm.