Convert SSL certificates between PEM, DER, P7B and PFX formats. Paste your certificate, select the conversion and download the result.
openssl x509 -outform der -in certificate.pem -out certificate.der
openssl x509 -inform der -in certificate.der -out certificate.pem
openssl crl2pkcs7 -nocrl -certfile certificate.pem -out certificate.p7b
openssl pkcs7 -print_certs -in certificate.p7b -out certificate.pem
openssl pkcs12 -export -out certificate.pfx -inkey private.key -in certificate.pem -certfile ca-bundle.pem
openssl pkcs12 -in certificate.pfx -out certificate.pem -nodes