I have a .cer certificate, .key file and I would like to convert it to the .pem format.
How do I convert them to .pem?
I have a .cer certificate, .key file and I would like to convert it to the .pem format.
How do I convert them to .pem?
Assuming you have the .key PK,
and .cer/.crt/.cert file in the correct format
(i think common-name is mandatory)
// in Linux
cat x.key x.cert > x.pem
// in Windows
copy /b x.key+x.cert x.pem