[openssl-commits] [openssl] OpenSSL_1_0_2-stable update

Rich Salz rsalz at openssl.org
Wed Aug 26 21:49:38 UTC 2015


The branch OpenSSL_1_0_2-stable has been updated
       via  a7cb67f4f2457724fbfbc39377f55c26f3aafa80 (commit)
      from  6cc31d4212c839c61b079af15b0dd43572ef8e68 (commit)


- Log -----------------------------------------------------------------
commit a7cb67f4f2457724fbfbc39377f55c26f3aafa80
Author: Hubert Kario <hkario at redhat.com>
Date:   Fri Jul 31 19:02:07 2015 +0200

    GH351: -help text for some s_client/s_server flags
    
    add -help descriptions of -curves, -sigalgs, -client_sigalgs
    to s_client and s_server
    
    Signed-off-by: Rich Salz <rsalz at akamai.com>
    Reviewed-by: Tim Hudson <tjh at openssl.org>

-----------------------------------------------------------------------

Summary of changes:
 apps/s_client.c | 8 ++++++++
 apps/s_server.c | 6 ++++++
 2 files changed, 14 insertions(+)

diff --git a/apps/s_client.c b/apps/s_client.c
index e55f2c5..2c75e11 100644
--- a/apps/s_client.c
+++ b/apps/s_client.c
@@ -424,6 +424,14 @@ static void sc_usage(void)
                " -no_ticket        - disable use of RFC4507bis session tickets\n");
     BIO_printf(bio_err,
                " -serverinfo types - send empty ClientHello extensions (comma-separated numbers)\n");
+    BIO_printf(bio_err,
+               " -curves arg       - Elliptic curves to advertise (colon-separated list)\n");
+    BIO_printf(bio_err,
+               " -sigalgs arg      - Signature algorithms to support (colon-separated list)\n");
+    BIO_printf(bio_err,
+               " -client_sigalgs arg - Signature algorithms to support for client\n");
+    BIO_printf(bio_err,
+               "                       certificate authentication (colon-separated list)\n");
 #endif
 #ifndef OPENSSL_NO_NEXTPROTONEG
     BIO_printf(bio_err,
diff --git a/apps/s_server.c b/apps/s_server.c
index acef382..afc72b0 100644
--- a/apps/s_server.c
+++ b/apps/s_server.c
@@ -652,6 +652,12 @@ static void sv_usage(void)
                " -no_ticket    - disable use of RFC4507bis session tickets\n");
     BIO_printf(bio_err,
                " -legacy_renegotiation - enable use of legacy renegotiation (dangerous)\n");
+    BIO_printf(bio_err,
+               " -sigalgs arg      - Signature algorithms to support (colon-separated list)\n");
+    BIO_printf(bio_err,
+               " -client_sigalgs arg  - Signature algorithms to support for client \n");
+    BIO_printf(bio_err,
+               "                        certificate authentication (colon-separated list)\n");
 # ifndef OPENSSL_NO_NEXTPROTONEG
     BIO_printf(bio_err,
                " -nextprotoneg arg - set the advertised protocols for the NPN extension (comma-separated list)\n");


More information about the openssl-commits mailing list