Also verify chain of trust from intermediate certificate authority certificate to server certificate.

This commit is contained in:
inference 2023-05-30 00:42:17 +01:00
parent adae788a94
commit ee41e6e573
Signed by: inference
SSH Key Fingerprint: SHA256:9Pl0nZ2UJacgm+IeEtLSZ4FOESgP1eKCtRflfPfdX9M

View File

@ -1,6 +1,6 @@
= OpenSSL Certificate Chain
Version: 0.0.0.7
Version: 0.0.0.8
This documentation contains the complete set of commands to create a new OpenSSL self-signed
@ -56,3 +56,6 @@ Each key can be encrypted or unencrypted, with multiple encryption options; AES
== Verify Server Certificate
`openssl x509 -noout -text -in server-crt.pem`
== Verify Chain of Trust (Intermediate to Server)
`openssl verify -CAfile intermediate-crt.pem server-crt.pem`