Compartir vía


RSA.ExportRSAPrivateKeyPem Método

Definición

Exporta la clave actual en el formato RSAPrivateKey PKCS#1, codificado en PEM.

public:
 System::String ^ ExportRSAPrivateKeyPem();
public string ExportRSAPrivateKeyPem ();
member this.ExportRSAPrivateKeyPem : unit -> string
Public Function ExportRSAPrivateKeyPem () As String

Devoluciones

Cadena que contiene el PKCS#1 RSAPrivateKey codificado en PEM.

Excepciones

No se ha podido exportar la clave.

Comentarios

Un PKCS#1 RSAPrivateKey codificado en PEM comenzará con -----BEGIN RSA PRIVATE KEY----- y finalizará con -----END RSA PRIVATE KEY-----, con el contenido de DER codificado en base64 de la clave entre los límites de PEM.

          The PEM is encoded according to the IETF RFC 7468 "strict"
          encoding rules.

Se aplica a