AsymmetricAlgorithm.TryExportPkcs8PrivateKeyPem 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.
Tente d’exporter la clé actuelle au format PrivateKeyInfo PKCS#8 encodé en PEM dans une mémoire tampon fournie.
public:
bool TryExportPkcs8PrivateKeyPem(Span<char> destination, [Runtime::InteropServices::Out] int % charsWritten);
public bool TryExportPkcs8PrivateKeyPem (Span<char> destination, out int charsWritten);
member this.TryExportPkcs8PrivateKeyPem : Span<char> * int -> bool
Public Function TryExportPkcs8PrivateKeyPem (destination As Span(Of Char), ByRef charsWritten As Integer) As Boolean
Paramètres
Étendue de caractères pour recevoir les données PKCS#8 PrivateKeyInfo codées en PEM.
- charsWritten
- Int32
Lorsque cette méthode retourne, contient une valeur qui indique le nombre de caractères écrits dans destination
. Ce paramètre est traité comme étant non initialisé.
Retours
true
si destination
est suffisamment grand pour recevoir la sortie ; sinon, false
.
Exceptions
Une implémentation pour n’a TryExportPkcs8PrivateKey(Span<Byte>, Int32) pas été fournie.
La clé n’a pas pu être exportée.
Remarques
Un PKCS#8 PrivateKeyInfo encodé pem commence par -----BEGIN PRIVATE KEY-----
et se termine par -----END PRIVATE KEY-----
, avec le contenu DER encodé en base64 de la clé entre les limites PEM.
The PEM is encoded according to the IETF RFC 7468 "strict"
encoding rules.