From 7615b5646bb946183b19ea752856171e93643e26 Mon Sep 17 00:00:00 2001 From: jdubois Date: Fri, 10 Jul 2020 12:11:10 +0200 Subject: [PATCH] ### Voir le contenu d'une CRL --- HowtoSSL.md | 15 +++++++++++++++ 1 file changed, 15 insertions(+) diff --git a/HowtoSSL.md b/HowtoSSL.md index 26d380f1..f46c5e47 100644 --- a/HowtoSSL.md +++ b/HowtoSSL.md @@ -193,6 +193,21 @@ Pour lire le format PFX : $ openssl pkcs12 -info -in certificat.pfx ~~~ +### Voir le contenu d'une CRL + +Voir la liste des numéros de séries des certificats révoqués. + +Si la CRL est encodée en DER : + +~~~ +$ openssl crl -inform DER -text -noout -in crl.pem +~~~ + +Si la CRL n'est pas binaire : + +~~~ +$ openssl crl -inform PEM -text -noout -in crl.pem +~~~ ### Extraction clé et certificat d'un fichier PFX