AsymmetricAlgorithm.ExportPkcs8PrivateKeyPem Méthode
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
Exporte la clé actuelle au format PKCS#8 PrivateKeyInfo, encodé en PEM.
public:
System::String ^ ExportPkcs8PrivateKeyPem();
public string ExportPkcs8PrivateKeyPem ();
member this.ExportPkcs8PrivateKeyPem : unit -> string
Public Function ExportPkcs8PrivateKeyPem () As String
Retours
Chaîne contenant le PKCS#8 PrivateKeyInfo encodé en PEM.
Exceptions
Une implémentation pour ExportPkcs8PrivateKey() ou TryExportPkcs8PrivateKey(Span<Byte>, Int32) n’a pas été fournie.
La clé n’a pas pu être exportée.
Remarques
Un PrivateKeyInfo codé en PEM PKCS#8 commence par -----BEGIN PRIVATE KEY-----
et se termine par -----END PRIVATE KEY-----
, avec le contenu DER codé en base64 de la clé entre les limites PEM.
The PEM is encoded according to the IETF RFC 7468 "strict" encoding rules.