From 9dd9f0816399d58a588b6a4df44688cf732c7cb3 Mon Sep 17 00:00:00 2001 From: Manuel Thalmann Date: Thu, 9 Nov 2023 12:31:30 +0100 Subject: [PATCH] Add command for verifying certificate chain --- Lab 2 - Certificates/README.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Lab 2 - Certificates/README.md b/Lab 2 - Certificates/README.md index e10014d..0da053d 100644 --- a/Lab 2 - Certificates/README.md +++ b/Lab 2 - Certificates/README.md @@ -294,3 +294,8 @@ After that, signing works properly: ```sh openssl ca -config /root/ca/openssl.cnf -extensions v3_intermediate_ca -days 3650 -notext -md sha256 -in intermediate.req -out intermediate.cer ``` + +Check the output: +```sh +openssl x509 -in intermediate.cer -noout -text +```