OpenSSL Convert .pem to .pfx: Difference between revisions

From UNIX Systems Administration
Jump to navigation Jump to search
(Created page with "== Convert .pem to .pfx == # Conversion from .pem to .pfx ## <tt>'''# openssl pkcs12 -export -in <certificate>.pem -inkey <key>.pem -out <certificate>.pfx '''</tt> == Furthe...")
 
(No difference)

Latest revision as of 00:46, 19 June 2020

Convert .pem to .pfx

  1. Conversion from .pem to .pfx
    1. # openssl pkcs12 -export -in <certificate>.pem -inkey <key>.pem -out <certificate>.pfx

Further Reading

  1. Create a .pfx/.p12 Certificate File Using OpenSSL