summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/Makefile
diff options
context:
space:
mode:
authorbeck <>2023-07-02 17:21:33 +0000
committerbeck <>2023-07-02 17:21:33 +0000
commitddcb4efd6551a982bf29b2e8e83c9c808a1670dc (patch)
tree33bb9f6c1c9fd44a8c7064445713f67f9fe0b371 /src/regress/lib/libssl/Makefile
parent025f3b8ef1e0ff3017dd0079925fbf85f15a6d22 (diff)
downloadopenbsd-ddcb4efd6551a982bf29b2e8e83c9c808a1670dc.tar.gz
openbsd-ddcb4efd6551a982bf29b2e8e83c9c808a1670dc.tar.bz2
openbsd-ddcb4efd6551a982bf29b2e8e83c9c808a1670dc.zip
Disable TLS 1.0 and TLS 1.1 in libssl
Their time has long since past, and they should not be used. This change restricts ssl to versions 1.2 and 1.3, and changes the regression tests to understand we no longer speak the legacy protocols. For the moment the magical "golden" byte for byte comparison tests of raw handshake values are disabled util jsing fixes them. ok jsing@ tb@
Diffstat (limited to 'src/regress/lib/libssl/Makefile')
-rw-r--r--src/regress/lib/libssl/Makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/regress/lib/libssl/Makefile b/src/regress/lib/libssl/Makefile
index bae1248ab1..f9919404f2 100644
--- a/src/regress/lib/libssl/Makefile
+++ b/src/regress/lib/libssl/Makefile
@@ -1,11 +1,11 @@
1# $OpenBSD: Makefile,v 1.51 2022/11/05 21:58:24 jsing Exp $ 1# $OpenBSD: Makefile,v 1.52 2023/07/02 17:21:32 beck Exp $
2 2
3SUBDIR += api 3SUBDIR += api
4SUBDIR += asn1 4SUBDIR += asn1
5SUBDIR += buffer 5SUBDIR += buffer
6SUBDIR += bytestring 6SUBDIR += bytestring
7SUBDIR += ciphers 7SUBDIR += ciphers
8SUBDIR += client 8#SUBDIR += client
9SUBDIR += dtls 9SUBDIR += dtls
10SUBDIR += exporter 10SUBDIR += exporter
11SUBDIR += handshake 11SUBDIR += handshake
@@ -13,7 +13,7 @@ SUBDIR += pqueue
13SUBDIR += quic 13SUBDIR += quic
14SUBDIR += record 14SUBDIR += record
15SUBDIR += record_layer 15SUBDIR += record_layer
16SUBDIR += server 16#SUBDIR += server
17SUBDIR += ssl 17SUBDIR += ssl
18SUBDIR += tls 18SUBDIR += tls
19SUBDIR += tlsext 19SUBDIR += tlsext