Extract .pfx to gernerate private key and certificate
This Guide provides how to extract .pfx and generate private key and certificate to import in to the server like Apache Export the private key file from the pfx file shell>> openssl pkcs12 -in filename.pfx -nocerts -out key.pem Export the certificate file from the pfx file shell>> openssl pkcs12 -in filename.pfx -clcerts -nokeys -out cert.pem Remove the passphrase from the private key shell>> openssl rsa -in key.pem -out server.key Now you have generated the certificate ( cert.pem ) and the private key ( server.key ) from the .pfx file. Note : It is better if you are familier with these file formats. .csr This is a Certificate Signing Request. Some applications can generate these for submission to certificate-authorities. It includes some/all of the key details of the requested certificate such as subject, organization, state, whatnot. These get signed by the CA and a certificate is returned. The returned certificate is the public cert...