diff options
author | 2020-10-03 17:54:27 +0000 | |
---|---|---|
committer | 2020-10-03 17:54:27 +0000 | |
commit | 58d5599b07837b5b91042703a31df04afc4f2507 (patch) | |
tree | b120f3c401e050589a5e829ba751e8bc0fb8934e /lib/libssl/ssl_locl.h | |
parent | Reimplement the TLSv1.2 record handling for the read side. (diff) | |
download | wireguard-openbsd-58d5599b07837b5b91042703a31df04afc4f2507.tar.xz wireguard-openbsd-58d5599b07837b5b91042703a31df04afc4f2507.zip |
Use TLSv1_1_enc_data instead of DTLSv1_enc_data.
DTLSv1 is TLSv1.1 over datagrams - there is no need for a separate
SSL3_ENC_METHOD struct, just use TLSv1_1_enc_data and remove
DTLSv1_enc_data entirely.
ok tb@
Diffstat (limited to 'lib/libssl/ssl_locl.h')
-rw-r--r-- | lib/libssl/ssl_locl.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/libssl/ssl_locl.h b/lib/libssl/ssl_locl.h index 0dda3ecd019..22f9760225c 100644 --- a/lib/libssl/ssl_locl.h +++ b/lib/libssl/ssl_locl.h @@ -1,4 +1,4 @@ -/* $OpenBSD: ssl_locl.h,v 1.296 2020/10/03 17:35:16 jsing Exp $ */ +/* $OpenBSD: ssl_locl.h,v 1.297 2020/10/03 17:54:27 jsing Exp $ */ /* Copyright (C) 1995-1998 Eric Young (eay@cryptsoft.com) * All rights reserved. * @@ -1140,7 +1140,6 @@ const SSL_METHOD *tls_legacy_server_method(void); const SSL_METHOD *ssl_get_client_method(uint16_t version); const SSL_METHOD *ssl_get_server_method(uint16_t version); -extern SSL3_ENC_METHOD DTLSv1_enc_data; extern SSL3_ENC_METHOD TLSv1_enc_data; extern SSL3_ENC_METHOD TLSv1_1_enc_data; extern SSL3_ENC_METHOD TLSv1_2_enc_data; |