summaryrefslogtreecommitdiff
path: root/src/regress
diff options
context:
space:
mode:
Diffstat (limited to 'src/regress')
-rw-r--r--src/regress/lib/libssl/interop/cipher/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/regress/lib/libssl/interop/cipher/Makefile b/src/regress/lib/libssl/interop/cipher/Makefile
index 77ed0f7ebe..bfe8cfea7a 100644
--- a/src/regress/lib/libssl/interop/cipher/Makefile
+++ b/src/regress/lib/libssl/interop/cipher/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.8 2022/02/05 18:21:09 tb Exp $ 1# $OpenBSD: Makefile,v 1.9 2022/02/05 18:34:06 tb Exp $
2 2
3# Connect a client to a server. Both can be current libressl, or 3# Connect a client to a server. Both can be current libressl, or
4# openssl 1.0.2, or openssl 1.1. Create lists of supported ciphers 4# openssl 1.0.2, or openssl 1.1. Create lists of supported ciphers
@@ -52,6 +52,10 @@ client-${clib}-server-${slib}.ciphers: \
52 uniq -d <$@.tmp >$@ 52 uniq -d <$@.tmp >$@
53 # we are only interested in ciphers supported by libressl 53 # we are only interested in ciphers supported by libressl
54 sort $@ client-libressl.ciphers >$@.tmp 54 sort $@ client-libressl.ciphers >$@.tmp
55. if "${clib}" == "openssl11" || "${slib}" == "openssl11"
56 # OpenSSL 1.1's SSL_CTX_set_cipher_list doesn't accept TLSv1.3 ciphers
57 sed -i '/^TLS_/d' $@.tmp
58. endif
55 uniq -d <$@.tmp >$@ 59 uniq -d <$@.tmp >$@
56 rm $@.tmp 60 rm $@.tmp
57.endfor 61.endfor