RSA.TryExportRSAPrivateKey(Span<Byte>, Int32) Método

Definición

Intenta exportar la clave actual en el formato RSAPrivateKey de PKCS#1 a un búfer proporcionado.

public:
 virtual bool TryExportRSAPrivateKey(Span<System::Byte> destination, [Runtime::InteropServices::Out] int % bytesWritten);
public virtual bool TryExportRSAPrivateKey (Span<byte> destination, out int bytesWritten);
abstract member TryExportRSAPrivateKey : Span<byte> * int -> bool
override this.TryExportRSAPrivateKey : Span<byte> * int -> bool
Public Overridable Function TryExportRSAPrivateKey (destination As Span(Of Byte), ByRef bytesWritten As Integer) As Boolean

Parámetros

destination
Span<Byte>

Intervalo de bytes que va a recibir los datos de RSAPrivateKey de PKCS#1.

bytesWritten
Int32

El resultado que devuelve este método contiene un valor que indica el número de bytes escritos en destination. Este parámetro se trata como sin inicializar.

Devoluciones

true si destination es lo suficientemente grande como para recibir la salida; en caso contrario, false.

Excepciones

No se ha podido exportar la clave.

Se aplica a

Consulte también