diff options
author | jsing <> | 2020-01-30 17:09:23 +0000 |
---|---|---|
committer | jsing <> | 2020-01-30 17:09:23 +0000 |
commit | f0f131814afdbc818e8b7b88541fca62af421a5d (patch) | |
tree | 7eeb14d221177f2f4d5d5b5c1ba2452ace34da8e /src/lib/libssl/Makefile | |
parent | 1f07a6fc3b3b9d44b731e6cf17fd00b540758db8 (diff) | |
download | openbsd-f0f131814afdbc818e8b7b88541fca62af421a5d.tar.gz openbsd-f0f131814afdbc818e8b7b88541fca62af421a5d.tar.bz2 openbsd-f0f131814afdbc818e8b7b88541fca62af421a5d.zip |
Provide struct/functions for handling TLSv1.3 key shares.
Pull out the key share handling code and provide a clean/self contained
interface. This will make it easier to support groups other than X25519.
ok beck@ inoguchi@ tb@
Diffstat (limited to 'src/lib/libssl/Makefile')
-rw-r--r-- | src/lib/libssl/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/libssl/Makefile b/src/lib/libssl/Makefile index 489c4fd217..afbd6d148e 100644 --- a/src/lib/libssl/Makefile +++ b/src/lib/libssl/Makefile | |||
@@ -1,4 +1,4 @@ | |||
1 | # $OpenBSD: Makefile,v 1.61 2020/01/30 16:25:09 jsing Exp $ | 1 | # $OpenBSD: Makefile,v 1.62 2020/01/30 17:09:23 jsing Exp $ |
2 | 2 | ||
3 | .include <bsd.own.mk> | 3 | .include <bsd.own.mk> |
4 | .ifndef NOMAN | 4 | .ifndef NOMAN |
@@ -73,6 +73,7 @@ SRCS= \ | |||
73 | tls13_handshake.c \ | 73 | tls13_handshake.c \ |
74 | tls13_handshake_msg.c \ | 74 | tls13_handshake_msg.c \ |
75 | tls13_key_schedule.c \ | 75 | tls13_key_schedule.c \ |
76 | tls13_key_share.c \ | ||
76 | tls13_lib.c \ | 77 | tls13_lib.c \ |
77 | tls13_record.c \ | 78 | tls13_record.c \ |
78 | tls13_record_layer.c \ | 79 | tls13_record_layer.c \ |