Thursday 10 December 2015

IT Technology: Convert SSL Certificate from .PFX to .CRT


You may convert your SSL certificate from .pfx to .crt by following the steps below:
1. Install OpenSSL by going to https://slproweb.com/products/Win32OpenSSL.html
2. Copy the .pfx file you would like to convert in OpenSSL\Bin
3. Open command prompt and cd to the OpenSSL\Bin folder
4. Type in the following command to convert the certificate:
    openssl pkcs12 -in [yourfile.pfx] -clcerts -nokeys -out [certificate.crt]
5. Type in the import passphrase.
6. Done! The converted .crt file is located in OpenSSL\Bin

No comments:

Post a Comment