summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2020-01-30 16:25:09 +0000
committerjsing <>2020-01-30 16:25:09 +0000
commitc435cca7eec0ec8c6d2f34f5511be91edae36307 (patch)
treec2c8df4a9c431efa5cc0db8ff09bf1be05c80c4e /src/lib/libssl/Makefile
parentaa6adbc5818a984bc67f244d0b3f6dcd36e2905e (diff)
downloadopenbsd-c435cca7eec0ec8c6d2f34f5511be91edae36307.tar.gz
openbsd-c435cca7eec0ec8c6d2f34f5511be91edae36307.tar.bz2
openbsd-c435cca7eec0ec8c6d2f34f5511be91edae36307.zip
Factor out/rewrite the ECDHE EC point key exchange code.
This reduces replication between the existing TLS client/server and allows the code to soon be reused for TLSv1.3. With feedback from inoguchi@ and tb@ ok inoguchi@ tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r--src/lib/libssl/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile
index b38bb5f682..489c4fd217 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.60 2020/01/22 07:58:27 jsing Exp $ 1# $OpenBSD: Makefile,v 1.61 2020/01/30 16:25:09 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -51,6 +51,7 @@ SRCS= \
51 ssl_clnt.c \ 51 ssl_clnt.c \
52 ssl_err.c \ 52 ssl_err.c \
53 ssl_init.c \ 53 ssl_init.c \
54 ssl_kex.c \
54 ssl_lib.c \ 55 ssl_lib.c \
55 ssl_methods.c \ 56 ssl_methods.c \
56 ssl_packet.c \ 57 ssl_packet.c \