From 47fa26b44f1a214f41ed95c66d2fc15653963f93 Mon Sep 17 00:00:00 2001 From: bwaegeneire Date: Wed, 25 Jan 2023 15:43:59 +0100 Subject: [PATCH] Ajout convertion p7b -> pem --- HowtoSSL.md | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/HowtoSSL.md b/HowtoSSL.md index b9764f20..e98c5a49 100644 --- a/HowtoSSL.md +++ b/HowtoSSL.md @@ -150,6 +150,13 @@ $ openssl pkey -in private.pkey -out private.pem openssl pkcs7 -print_certs -in certificate.p7b -out certificate.cer ~~~ + +### Convertir P7B vers PEM + +~~~ +openssl pkcs7 -inform der -print_certs -in certificate.p7b -out certificate.pem +~~~ + ### Convertir DER vers PEM ~~~