summaryrefslogtreecommitdiff
path: root/src/lib/libssl/Makefile
diff options
context:
space:
mode:
authorjsing <>2019-01-21 13:45:57 +0000
committerjsing <>2019-01-21 13:45:57 +0000
commitc06f6f3e478fe1e9e0a1f1601f983e3d55479ed3 (patch)
tree14969b4304a48b9fdbf41d756aec5076c5ac5d69 /src/lib/libssl/Makefile
parentbde3ac13e78ee3960e9e0340d4af51a79ada0aa6 (diff)
downloadopenbsd-c06f6f3e478fe1e9e0a1f1601f983e3d55479ed3.tar.gz
openbsd-c06f6f3e478fe1e9e0a1f1601f983e3d55479ed3.tar.bz2
openbsd-c06f6f3e478fe1e9e0a1f1601f983e3d55479ed3.zip
Provide the initial TLSv1.3 client implementation.
Move tls13_connect() to a new tls13_client.c file and provide a legacy wrapper to it, which allocates a struct tls_ctx if necessary. Also move tls13_client_hello_send() to tls13_client.c and actual implement the building of a client hello. ok 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 b51d7168c0..de8d66c653 100644
--- a/src/lib/libssl/Makefile
+++ b/src/lib/libssl/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.52 2019/01/21 10:28:52 tb Exp $ 1# $OpenBSD: Makefile,v 1.53 2019/01/21 13:45:57 jsing Exp $
2 2
3.include <bsd.own.mk> 3.include <bsd.own.mk>
4.ifndef NOMAN 4.ifndef NOMAN
@@ -63,6 +63,7 @@ SRCS= \
63 t1_hash.c \ 63 t1_hash.c \
64 t1_lib.c \ 64 t1_lib.c \
65 tls13_buffer.c \ 65 tls13_buffer.c \
66 tls13_client.c \
66 tls13_handshake.c \ 67 tls13_handshake.c \
67 tls13_handshake_msg.c \ 68 tls13_handshake_msg.c \
68 tls13_key_schedule.c \ 69 tls13_key_schedule.c \