summaryrefslogtreecommitdiffstats
path: root/apps/s_cb.c
diff options
context:
space:
mode:
authorKurt Roeckx <kurt@roeckx.be>2016-02-21 19:57:43 +0100
committerKurt Roeckx <kurt@roeckx.be>2016-02-27 13:07:10 +0100
commit800fe8e339f0926b0ddda9cd1959c19bd17dc65b (patch)
treedf16c57b9590da05662e06d41b5b361835369402 /apps/s_cb.c
parent43986596c672eb5dd20c363f12fef09a04cdc9e5 (diff)
Drop support for printing SSLv2 ciphers names.
Reviewed-by: Rich Salz <rsalz@openssl.org> MR: #2083
Diffstat (limited to 'apps/s_cb.c')
-rw-r--r--apps/s_cb.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/apps/s_cb.c b/apps/s_cb.c
index b74d682506..8a25d173b0 100644
--- a/apps/s_cb.c
+++ b/apps/s_cb.c
@@ -1061,11 +1061,12 @@ int args_excert(int opt, SSL_EXCERT **pexc)
static void print_raw_cipherlist(SSL *s)
{
const unsigned char *rlist;
- static const unsigned char scsv_id[] = { 0, 0, 0xFF };
+ static const unsigned char scsv_id[] = { 0, 0xFF };
size_t i, rlistlen, num;
if (!SSL_is_server(s))
return;
num = SSL_get0_raw_cipherlist(s, NULL);
+ OPENSSL_assert(num == 2);
rlistlen = SSL_get0_raw_cipherlist(s, &rlist);
BIO_puts(bio_err, "Client cipher list: ");
for (i = 0; i < rlistlen; i += num, rlist += num) {
@@ -1074,7 +1075,7 @@ static void print_raw_cipherlist(SSL *s)
BIO_puts(bio_err, ":");
if (c)
BIO_puts(bio_err, SSL_CIPHER_get_name(c));
- else if (!memcmp(rlist, scsv_id - num + 3, num))
+ else if (!memcmp(rlist, scsv_id, num))
BIO_puts(bio_err, "SCSV");
else {
size_t j;