AsymmetricAlgorithm.ExportSubjectPublicKeyInfoPem 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 partie clé publique de la clé actuelle au format X.509 SubjectPublicKeyInfo, encodé en PEM.
public:
System::String ^ ExportSubjectPublicKeyInfoPem();
public string ExportSubjectPublicKeyInfoPem ();
member this.ExportSubjectPublicKeyInfoPem : unit -> string
Public Function ExportSubjectPublicKeyInfoPem () As String
Retours
Chaîne contenant le X.509 encodé en PEM SubjectPublicKeyInfo.
Exceptions
Une implémentation pour ExportSubjectPublicKeyInfo() ou TryExportSubjectPublicKeyInfo(Span<Byte>, Int32) n’a pas été fournie.
La clé n’a pas pu être exportée.
Remarques
Un objet X.509 encodé en PEM commence par -----BEGIN PUBLIC KEY-----
et se termine par -----END PUBLIC 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.