Export SSL certificates from Windows to Linux
Export SSL Certificate from a Windows environment to Linux
Have you ever generated your SSL CSR (certificate signing request) request on a Windows box and needed to install it on Linux afterwards?
First, you have to get the certificate and private key out of Windows,preferably in a PFX (PKCS #12) format.
- Click Start, Run, then type “mmc” and hit enter.
- In the leftmost menu, choose “Add/Remove Snap In”.
- Click “Add”, then click “Certificates”, then OK.
- When the wizard starts, choose “Computer Account”, “Local Computer” and finish out the wizard.
- Once you’re finished, get back to the MMC and expand the “Certificates” node, then the “Personal” node.
- Click on the “Certificates” node under “Personal” and find your certificate in the right pane.
- Right click on the certificate and choose “All Tasks”, then “Export”.
- When the wizard starts, choose “Yes” for exporting the private key, then select ONLY “Strong Private Key Protection” from the PFX section. You will also need to set a password and specify a location for the PFX file.
- Once the PFX file has been saved, close out the MMC (don’t save the snap-in if it asks).
- Get the PFX over to the Linux server somehow.
Once the PFX makes it over to the Linux server, you have to decrypt the PFX into a plaintext PEM file (PFX’s are binary files, and can’t be viewed in a text editor):
openssl pkcs12 -in certificate.pfx -out temp.pem
You will be asked for the password for the PFX (which is the one you set in the Windows wizard). Once you enter that, you will be asked for a new password. This new password is used to encrypt the private key. You cannot proceed until you enter a password that is 4 characters or longer. REMEMBER this password!
When this step is complete, you should have a PEM file that you can read in a text editor. Open the file in a text editor and copy the private key and certificate to different files (private.key certificate.crt respectively). Remember to keep the dashed lines intact when you copy the certificates – this is important. There is some additional text above the key, and also between the key and certificate – this text should be ignored and should not be included in the certificate and key files.
Now that you have the key and certificate separated, you need to decrypt the private key (or face the wrath of webserver software every time you start it). You can decrypt the private key like this:
openssl rsa -in private.key -out private.key
Provide the same file name twice and it will decrypt the key onto itself, keeping everything in one file. OpenSSL will ask for a password to decrypt the key, and this is the password you set when you decrypted the PFX. If you forgot the password, you will need to start over from when you brought it over from the Windows machine.
After this process, you should have four files, a PFX, PEM, KEY, and CRT. Store away the PFX and PEM, and you will use the key and certificate files to install into Apache or whatever software you’re configuring to use SSL.
Apache:
SSLEngine On SSLCertificateFile /path/to/your/certificate.crt SSLCertificateKeyFile /path/to/your/private.key
Nginx:
ssl on; ssl_certificate_key /path/to/private.key; ssl_certificate /path/to/certificate.crt;