openssl/pfx/order

This commit is contained in:
Marc Beninca 2019-08-16 20:48:06 +02:00
parent f03bd13114
commit 4b966b1298

View file

@ -250,15 +250,19 @@ from CA key & certificate
-out "client.crt" \ -out "client.crt" \
-set_serial nn -set_serial nn
Export client PFX Export client P12/PFX
================= =====================
* client private key
* client certificate
* CA certificate
.. code:: shell .. code:: shell
openssl \ openssl \
pkcs12 \ pkcs12 \
-certfile ca.crt \
-in client.crt \
-inkey client.key \
-export \ -export \
-out client.pfx -out client.pfx \
-inkey client.key \
-in client.crt \
-certfile ca.crt