Is it possible to convert an SSL certificate from a .key file to a .pfx?
To check if your .key file has everything you need: #check if file contains a valid certificate: openssl x509 -text -in file.key It should print out certificate details. If it prints an error including the text “unable to load certificate”, then your file is not sufficient. #check if file contains a valid key: openssl rsa … Read more