Update certificate chain handling

This commit is contained in:
Tuan Dang
2024-06-09 23:23:01 -04:00
parent b6c924ef37
commit b48325b4ba
9 changed files with 56 additions and 66 deletions

View File

@@ -97,7 +97,7 @@ In the following steps, we explore how to revoke a X.509 certificate under a CA
downloaded CRL with OpenSSL, you can use the following command:
```bash
openssl verify -crl_check -CAfile chain.pem -CRLfile crl.pem certificate.pem
openssl verify -crl_check -CAfile chain.pem -CRLfile crl.pem cert.pem
```
</Step>