Posted on :: Updated on ::

Source:

Inspect certificate

openssl x509 -in input.crt -noout -text

Inspect certificate from URL

echo | openssl s_client -connect burrow.test.indexexchange.com:443 | openssl x509 -noout -text

Remove passphrase from a private key

openssl ec -in input.key -out output.key

Questions