diff options
author | René Meusel <[email protected]> | 2022-04-19 14:26:15 +0530 |
---|---|---|
committer | René Meusel <[email protected]> | 2022-04-19 16:13:22 +0530 |
commit | 07c3a3f96c4f454042fcef03b19d2a7f312ce20d (patch) | |
tree | 2deeb950d6ce49fb0f3d2edad3a253e5540160c2 | |
parent | eab7d30e734bcb11a4d75f594bc5cdee132e0c9a (diff) |
Documentation for --client-cert and --client-cert-key
Co-Authored-By: Hannes Rantzsch <[email protected]>
-rw-r--r-- | doc/cli.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/cli.rst b/doc/cli.rst index 8eafece33..b0c64feae 100644 --- a/doc/cli.rst +++ b/doc/cli.rst @@ -215,7 +215,7 @@ from which a policy description will be read. Prints the list of ciphersuites that will be offered under a particular policy/version. -``tls_client host --port=443 --print-certs --policy=default --tls1.0 --tls1.1 --tls1.2 --skip-system-cert-store --trusted-cas= --session-db= --session-db-pass= --next-protocols= --type=tcp`` +``tls_client host --port=443 --print-certs --policy=default --tls1.0 --tls1.1 --tls1.2 --skip-system-cert-store --trusted-cas= --session-db= --session-db-pass= --next-protocols= --type=tcp --client-cert= --client-cert-key=`` Implements a testing TLS client, which connects to *host* via TCP or UDP on port *port*. The TLS version can be set with the flags *tls1.0*, *tls1.1* and *tls1.2* of which the lowest specified version is automatically chosen. If @@ -224,6 +224,8 @@ from which a policy description will be read. prints all certificates in the chain, if *print-certs* is passed. *next-protocols* is a comma separated list and specifies the protocols to advertise with Application-Layer Protocol Negotiation (ALPN). + Pass a path to a client certificate PEM and unencrypted PKCS8 encoded private + key if client authentication is required. ``tls_server cert key --port=443 --type=tcp --policy=default --dump-traces= --max-clients=0 --socket-id=0`` Implements a testing TLS server, which allows TLS clients to connect and which |