From 591b982ee293938f0df951b42722d3714201a5b8 Mon Sep 17 00:00:00 2001 From: jsing <> Date: Fri, 13 Mar 2020 16:40:42 +0000 Subject: Remove dtls1_enc(). Like much of the original DTLS code, dtls1_enc() is effectively a renamed copy of tls1_enc(). Since then tls1_enc() has been modified, however the non-AEAD code remains largely the same. As such, remove dtls1_enc() and instead call tls1_enc() from the DTLS code. The tls1_enc() AEAD code does not currently work correctly with DTLS, however this is a non-issue since we do not support AEAD cipher suites with DTLS currently. ok tb@ --- src/lib/libssl/Makefile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) (limited to 'src/lib/libssl/Makefile') diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 22209d574b..7631dd4cd4 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.63 2020/02/15 14:40:38 jsing Exp $ +# $OpenBSD: Makefile,v 1.64 2020/03/13 16:40:42 jsing Exp $ .include .ifndef NOMAN @@ -34,7 +34,6 @@ SRCS= \ bs_cbs.c \ d1_both.c \ d1_clnt.c \ - d1_enc.c \ d1_lib.c \ d1_pkt.c \ d1_srtp.c \ -- cgit v1.2.3-55-g6feb