From 4b966b1298ccba32b7af8fae08b34d0db52907ec Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Fri, 16 Aug 2019 20:48:06 +0200 Subject: [PATCH] openssl/pfx/order --- in/public/security/openssl/index.rst | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/in/public/security/openssl/index.rst b/in/public/security/openssl/index.rst index e9e8cfa..fba23fd 100644 --- a/in/public/security/openssl/index.rst +++ b/in/public/security/openssl/index.rst @@ -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