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
commit1f07a6fc3b3b9d44b731e6cf17fd00b540758db8 (patch)
treec2c8df4a9c431efa5cc0db8ff09bf1be05c80c4e /src/lib/libssl/Makefile
parent668fa98385559e6ca53555e32da8e7eb618f0d80 (diff)
downloadopenbsd-1f07a6fc3b3b9d44b731e6cf17fd00b540758db8.tar.gz
openbsd-1f07a6fc3b3b9d44b731e6cf17fd00b540758db8.tar.bz2
openbsd-1f07a6fc3b3b9d44b731e6cf17fd00b540758db8.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 \