openssl/pfx/order

This commit is contained in:
Marc Beninca 2019-08-16 20:48:06 +02:00
parent f03bd13114
commit 4b966b1298
1 changed files with 10 additions and 6 deletions

View File

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