diff options
author | 2015-07-17 07:04:40 +0000 | |
---|---|---|
committer | 2015-07-17 07:04:40 +0000 | |
commit | 4314af3e2aeeba04584bc9d3db28b8832a21028b (patch) | |
tree | 8ddce1b1326e4a006ba05ab304b9f030690c404e /lib/libssl/src/ssl/ssl3.h | |
parent | Initialize client fd to -1 as well, from Bobby Powers. (diff) | |
download | wireguard-openbsd-4314af3e2aeeba04584bc9d3db28b8832a21028b.tar.xz wireguard-openbsd-4314af3e2aeeba04584bc9d3db28b8832a21028b.zip |
Remove workaround for TLS padding bug from SSLeay days.
OpenSSL doesn't remember which clients were impacted and the
functionality has been broken in their stable releases for 2 years.
Based on OpenSSL commit a8e4ac6a2fe67c19672ecf0c6aeafa15801ce3a5.
ok jsing@
Diffstat (limited to 'lib/libssl/src/ssl/ssl3.h')
-rw-r--r-- | lib/libssl/src/ssl/ssl3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libssl/src/ssl/ssl3.h b/lib/libssl/src/ssl/ssl3.h index 265d18810e4..8bcf9e37e82 100644 --- a/lib/libssl/src/ssl/ssl3.h +++ b/lib/libssl/src/ssl/ssl3.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl3.h,v 1.37 2015/06/18 22:51:05 doug Exp $ */ +/* $OpenBSD: ssl3.h,v 1.38 2015/07/17 07:04:41 doug Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -351,7 +351,7 @@ typedef struct ssl3_buffer_st { #define SSL3_FLAGS_NO_RENEGOTIATE_CIPHERS 0x0001 #define SSL3_FLAGS_DELAY_CLIENT_FINISHED 0x0002 #define SSL3_FLAGS_POP_BUFFER 0x0004 -#define TLS1_FLAGS_TLS_PADDING_BUG 0x0008 +#define TLS1_FLAGS_TLS_PADDING_BUG 0x0 #define TLS1_FLAGS_SKIP_CERT_VERIFY 0x0010 #define TLS1_FLAGS_KEEP_HANDSHAKE 0x0020 #define SSL3_FLAGS_CCS_OK 0x0080 |