Add command for verifying certificate chain
This commit is contained in:
parent
a2393f21cb
commit
9dd9f08163
1 changed files with 5 additions and 0 deletions
|
@ -294,3 +294,8 @@ After that, signing works properly:
|
||||||
```sh
|
```sh
|
||||||
openssl ca -config /root/ca/openssl.cnf -extensions v3_intermediate_ca -days 3650 -notext -md sha256 -in intermediate.req -out intermediate.cer
|
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
|
||||||
|
```
|
||||||
|
|
Loading…
Reference in a new issue