mirror of
https://github.com/openssl/openssl.git
synced 2024-12-16 13:33:49 +08:00
Drop support for printing SSLv2 ciphers names.
Reviewed-by: Rich Salz <rsalz@openssl.org> MR: #2083
This commit is contained in:
parent
43986596c6
commit
800fe8e339
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user