convert cer to crt linux mint
# For Linux Mint (PEM) openssl x509 -inform PEM -in filename.cer -out filename.crt # For Linux Mint (DER) openssl x509 -inform DER -in filename.cer -out filename.crt
Here is what the above code is Doing:
1. openssl is the command for executing OpenSSL.
2. x509 is the OpenSSL command for working with X.509 certificates.
3. -inform PEM is the input format.
4. -in filename.cer is the input file.
5. -outform DER is the output format.
6. -out filename.crt is the output file.