共用方式為


RSA.ExportRSAPrivateKeyPem 方法

定義

匯出 PKCS#1 RSAPrivateKey 格式、PEM 編碼的目前密鑰。

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

傳回

包含 PEM 編碼 PKCS#1 RSAPrivateKey 的字串。

例外狀況

無法匯出金鑰。

備註

PEM 編碼的 PKCS#1 RSAPrivateKey 會以 -----BEGIN RSA PRIVATE KEY----- 開頭並以 結尾 -----END RSA PRIVATE KEY-----,並在 PEM 界限之間,使用密鑰的 base64 編碼 DER 內容。

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

適用於