You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello @aslafy-z Thanks for mentioning about the issue. I can work on it but I need to understand it well. Can you give an example with openssl command about this conversion?
@yakuter we also need to convert pfx to cert.pem and cert.key.
Here is the openssl doc to do that:
Conversion to a combined PEM file
To convert a PFX file to a PEM file that contains both the certificate and private key, the following command needs to be used: openssl pkcs12 -in filename.pfx -out cert.pem -nodes
Conversion to separate PEM files
We can extract the private key form a PFX to a PEM file with this command: openssl pkcs12 -in filename.pfx -nocerts -out key.pem
Thank you for your work on this project!
I'd love to see the following new feature in the CLI:
Ability to convert certificates/keys between PEM to PKCS12 (with password support), and the other way around.
The text was updated successfully, but these errors were encountered: