summaryrefslogtreecommitdiffstats
path: root/apps/apps.h
diff options
context:
space:
mode:
authorHubert Kario <hkario@redhat.com>2015-07-31 18:32:39 +0200
committerRich Salz <rsalz@openssl.org>2015-08-26 17:43:20 -0400
commitad775e04f6dab51b7f929b54f5aa3c2393f957c5 (patch)
treed7dc9f7376998b96d2ca5eb00627dad92821075f /apps/apps.h
parent8cbb153357896c4b224e0678550944f7851bc3b2 (diff)
GH350: -help text few s_client and s_server flags
add -help description of sigalgs, client_sigalgs, curves and named_curve Signed-off-by: Rich Salz <rsalz@akamai.com> Reviewed-by: Tim Hudson <tjh@openssl.org>
Diffstat (limited to 'apps/apps.h')
-rw-r--r--apps/apps.h13
1 files changed, 9 insertions, 4 deletions
diff --git a/apps/apps.h b/apps/apps.h
index 99c58095f0..48c82e884a 100644
--- a/apps/apps.h
+++ b/apps/apps.h
@@ -296,10 +296,15 @@ void unbuffer(FILE *fp);
{"no_resumption_on_reneg", OPT_S_ONRESUMP, '-' }, \
{"no_legacy_server_connect", OPT_S_NOLEGACYCONN, '-' }, \
{"strict", OPT_S_STRICT, '-' }, \
- {"sigalgs", OPT_S_SIGALGS, 's', }, \
- {"client_sigalgs", OPT_S_CLIENTSIGALGS, 's', }, \
- {"curves", OPT_S_CURVES, 's', }, \
- {"named_curve", OPT_S_NAMEDCURVE, 's', }, \
+ {"sigalgs", OPT_S_SIGALGS, 's', \
+ "Signature algorithms to support (colon-separated list)" }, \
+ {"client_sigalgs", OPT_S_CLIENTSIGALGS, 's', \
+ "Signature algorithms to support for client certificate" \
+ " authentication (colon-separated list)" }, \
+ {"curves", OPT_S_CURVES, 's', \
+ "Elliptic curves to advertise (colon-separated list)" }, \
+ {"named_curve", OPT_S_NAMEDCURVE, 's', \
+ "Elliptic curve used for ECDHE (server-side only)" }, \
{"cipher", OPT_S_CIPHER, 's', }, \
{"dhparam", OPT_S_DHPARAM, '<' }, \
{"debug_broken_protocol", OPT_S_DEBUGBROKE, '-' }