openssl/client/fastest

This commit is contained in:
Marc Beninca 2019-08-16 15:15:03 +02:00
parent 185f479549
commit 0223058cdd

View file

@ -232,3 +232,20 @@ Sign request
-set_serial 0 \ -set_serial 0 \
-days 730 \ -days 730 \
-out "certificate.crt" \ -out "certificate.crt" \
----
from CA key & certificate
-------------------------
.. code:: shell
openssl \
x509 \
-CA ca.crt \
-CAkey ca.key \
-req \
-in "client.csr" \
-days 365 \
-out "client.crt" \
-set_serial nn