Examples (4)
Display certificate information
openssl x509 -in filename.crt -noout -textDisplay a certificate's expiration date
openssl x509 -enddate -noout -in filename.pemConvert a certificate between binary DER encoding and textual PEM encoding
openssl x509 -inform der -outform pem -in original_certificate_file -out converted_certificate_fileStore a certificate's public key in a file
openssl x509 -in certificate_file -noout -pubkey -out output_filemade by @shridhargupta | data from tldr-pages