Answer by Brian Gillespie for How to create .pfx file containing only one of...
There may be a shorter way to do this without going through PEM, but I don't know it.Extract the private key to PEM:openssl.exe pkcs12 -in <pfx_file_name>.pfx -nocerts -out...
View ArticleAnswer by ice13berg for How to create .pfx file containing only one of...
If you're trying to create a single pfx file from a public/private key pair, then I think this question becomes a duplicate of this post. openssl pkcs12 -inkey priv.pem -in pub.cert -export -out...
View ArticleAnswer by Ankur Singhal for How to create .pfx file containing only one of...
To extract the private key: Openssl.exe pkcs12 -in <pfx_file_name>.pfx -nocerts -out priv.pemThe generated private key file (priv.pem) will be password protected, to remove the pass phrase from...
View ArticleHow to create .pfx file containing only one of private/public key
As far as I know .pfx files are not required to contain both public and private key. However, I could not find a way how to create a file that contains only one of them.I need this because I am writing...
View Article