diff options
author | 2017-08-28 18:12:10 +0000 | |
---|---|---|
committer | 2017-08-28 18:12:10 +0000 | |
commit | faa0c91c1317f2689bed6b9cb748e811a5951b63 (patch) | |
tree | 7564694f2a7bc20d442c9185afd6698ea14cc0fa /lib/libssl/s3_lib.c | |
parent | fix clang warning wrt const string and +; from joerg@netbsd; ok millert@ (diff) | |
download | wireguard-openbsd-faa0c91c1317f2689bed6b9cb748e811a5951b63.tar.xz wireguard-openbsd-faa0c91c1317f2689bed6b9cb748e811a5951b63.zip |
ECDHE-RSA-DES-CBC3-SHA should not be marked HIGH.
Spotted by Andreas Bartelt <obsd at bartula dot de>
Diffstat (limited to 'lib/libssl/s3_lib.c')
-rw-r--r-- | lib/libssl/s3_lib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/s3_lib.c b/lib/libssl/s3_lib.c index bbf0444c212..ab92ebf36a1 100644 --- a/lib/libssl/s3_lib.c +++ b/lib/libssl/s3_lib.c @@ -1,4 +1,4 @@ -/* $OpenBSD: s3_lib.c,v 1.159 2017/08/28 16:37:04 jsing Exp $ */ +/* $OpenBSD: s3_lib.c,v 1.160 2017/08/28 18:12:10 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1040,7 +1040,7 @@ SSL_CIPHER ssl3_ciphers[] = { .algorithm_enc = SSL_3DES, .algorithm_mac = SSL_SHA1, .algorithm_ssl = SSL_TLSV1, - .algo_strength = SSL_HIGH, + .algo_strength = SSL_MEDIUM, .algorithm2 = SSL_HANDSHAKE_MAC_DEFAULT|TLS1_PRF, .strength_bits = 112, .alg_bits = 168, |