openssl/client/fastest
This commit is contained in:
parent
185f479549
commit
0223058cdd
1 changed files with 17 additions and 0 deletions
|
@ -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
|
||||||
|
|
Loading…
Reference in a new issue