Exports the RSAParameters.
Public Overrides Function ExportParameters ( _ includePrivateParameters As Boolean _ ) As RSAParameters
Dim instance As RSACryptoServiceProvider Dim includePrivateParameters As Boolean Dim returnValue As RSAParameters returnValue = instance.ExportParameters(includePrivateParameters)
public override RSAParameters ExportParameters( bool includePrivateParameters )
public: virtual RSAParameters ExportParameters( bool includePrivateParameters ) override
public override function ExportParameters( includePrivateParameters : boolean ) : RSAParameters
The key cannot be exported.
The following code example exports the key information created using the RSACryptoServiceProvider into an RSAParameters object.
Try 'Create a new RSACryptoServiceProvider object. Dim RSA As New RSACryptoServiceProvider() 'Export the key information to an RSAParameters object. 'Pass false to export the public key information or pass 'true to export public and private key information. Dim RSAParams As RSAParameters = RSA.ExportParameters(False) Catch e As CryptographicException 'Catch this exception in case the encryption did 'not succeed. Console.WriteLine(e.Message) End Try
try { //Create a new RSACryptoServiceProvider object. RSACryptoServiceProvider RSA = new RSACryptoServiceProvider(); //Export the key information to an RSAParameters object. //Pass false to export the public key information or pass //true to export public and private key information. RSAParameters RSAParams = RSA.ExportParameters(false); } catch(CryptographicException e) { //Catch this exception in case the encryption did //not succeed. Console.WriteLine(e.Message); }
try { //Create a new RSACryptoServiceProvider Object*. RSACryptoServiceProvider^ RSA = gcnew RSACryptoServiceProvider; //Export the key information to an RSAParameters object. //Pass false to export the public key information or pass //true to export public and private key information. RSAParameters RSAParams = RSA->ExportParameters( false ); } catch ( CryptographicException^ e ) { //Catch this exception in case the encryption did //not succeed. Console::WriteLine( e->Message ); }
for permission to export a private key. Security action: Demand. Associated enumeration: KeyContainerPermissionFlags..::.Export
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98, Windows CE, Windows Mobile for Smartphone, Windows Mobile for Pocket PC