I have the CSR and Pulic SSL and Intermediate CA keys from the provider.
Need to convert them to PEM format in order to upload them in to Sophos Portal.
Could anyone please guide me.
This thread was automatically locked due to age.
Hi, and welcome to the UTM Community!
Depending on what you want to have happen, there might be an answer that differes from the following...
You will need a PKCS#12 instead of separate PEMs. I use the Windows version of openssl with a Comodo cert as follows:
OpenSSL-Win64\bin\openssl.exe pkcs12 -export -in -certfile <Comodo Root CA file> -certfile <Comodo Intermediate CA file> sub.domain.com.cer -inkey sub.domain.com.private.key -out sub.domain.com.p12
The < and > are delimiters and should not appear in the command.
Cheers - Bob
Hi, and welcome to the UTM Community!
Depending on what you want to have happen, there might be an answer that differes from the following...
You will need a PKCS#12 instead of separate PEMs. I use the Windows version of openssl with a Comodo cert as follows:
OpenSSL-Win64\bin\openssl.exe pkcs12 -export -in -certfile <Comodo Root CA file> -certfile <Comodo Intermediate CA file> sub.domain.com.cer -inkey sub.domain.com.private.key -out sub.domain.com.p12
The < and > are delimiters and should not appear in the command.
Cheers - Bob