User Tools

Site Tools


linux:opensslchain

Display certificates contained in a certificate file

A certificate file might contain just one certificate or multiple certificates (the whole certification chain for example).

Display the first (or only) certificate in a certificate file

openssl x509 -noout -text -in <path_and_file_name> 

Display all content in a certificate file

To display certificates, keys and certificate revocation lists

openssl storeutl -noout -text <path_and_file_name> 

To display only contained certificates

openssl storeutl -noout -text -certs <path_and_file_name> 

To display only contained keys

openssl storeutl -keys -noout -text <path_and_file_name> 

To display only certificate revocation lists

openssl storeutl -keys -noout -text <path_and_file_name> 
linux/opensslchain.txt · Last modified: 2023/02/08 01:00 by olaf