DER

All posts tagged DER

Some kinds of software require only one format of SSL certificates. This is the way how you can convert certificates between two popular formats (PEM and DER).

Use ‘openssl’:

openssl x509 -inform DER -in der-cert.crt -outform PEM -out pem-cert.pem

And vice versa:

openssl x509 -inform PEM -in pem-cert.pem -outform DER -out der-cert.crt