OpenSSL Convert .pem to .pfx

From UNIX Systems Administration
Revision as of 00:46, 19 June 2020 by Michael Kohler (talk | contribs) (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...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

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