How do I convert .crt file to .pem file
Follow the two steps given below. openssl x509 -in input.crt -out input.der -outform DER openssl x509 -in input.der -inform DER -out output.pem -outform PEM Now you have the file in .pem format