Extrakce klíče ze soubor PEM

07.03.2018 Tipy a triky #ssl #certifikat

Extrahování klíče ze souboru PEM pomocí OPENSSL


Extract key

openssl pkey -in foo.pem -out foo.key

Another method of extracting the key...

openssl rsa -in foo.pem -out foo.key

Extract all the certs, including the CA Chain

openssl crl2pkcs7 -nocrl -certfile foo.pem | openssl pkcs7 -print_certs -out foo.cert

Extract the textually first cert as DER

openssl x509 -in foo.pem -outform DER -out first-cert.der