summaryrefslogtreecommitdiff
path: root/src/regress/lib/libtls/tls/Makefile
diff options
context:
space:
mode:
authorjsing <>2024-03-20 10:38:05 +0000
committerjsing <>2024-03-20 10:38:05 +0000
commitf6b358ce6c4545cef5d8bccff1ac051523dd4612 (patch)
treeff74d9dcc88a419d6d88495e264a5ffc3742f64a /src/regress/lib/libtls/tls/Makefile
parentbf5599144609e046ba98f40a58158132af34faeb (diff)
downloadopenbsd-f6b358ce6c4545cef5d8bccff1ac051523dd4612.tar.gz
openbsd-f6b358ce6c4545cef5d8bccff1ac051523dd4612.tar.bz2
openbsd-f6b358ce6c4545cef5d8bccff1ac051523dd4612.zip
Use the new certificates/chains in regress.
The new certificates are more representative of the real world. The old certificates use weak algorithms and expire in the very near future. Most of our regress has already been switched over, this changes the remainder. Thanks to Bernhard M. Wiedemann for reminding us of the upcoming expiry. ok tb@
Diffstat (limited to '')
-rw-r--r--src/regress/lib/libtls/tls/Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/regress/lib/libtls/tls/Makefile b/src/regress/lib/libtls/tls/Makefile
index 0fbd78481b..ecdc0393e7 100644
--- a/src/regress/lib/libtls/tls/Makefile
+++ b/src/regress/lib/libtls/tls/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.2 2017/05/06 21:56:43 jsing Exp $ 1# $OpenBSD: Makefile,v 1.3 2024/03/20 10:38:05 jsing Exp $
2 2
3PROG= tlstest 3PROG= tlstest
4LDADD= -lcrypto -lssl -ltls 4LDADD= -lcrypto -lssl -ltls
@@ -12,8 +12,8 @@ REGRESS_TARGETS= \
12 12
13regress-tlstest: ${PROG} 13regress-tlstest: ${PROG}
14 ./tlstest \ 14 ./tlstest \
15 ${.CURDIR}/../../libssl/certs/ca.pem \ 15 ${.CURDIR}/../../libssl/certs/ca-root-rsa.pem \
16 ${.CURDIR}/../../libssl/certs/server.pem \ 16 ${.CURDIR}/../../libssl/certs/server1-rsa-chain.pem \
17 ${.CURDIR}/../../libssl/certs/server.pem 17 ${.CURDIR}/../../libssl/certs/server1-rsa.pem
18 18
19.include <bsd.regress.mk> 19.include <bsd.regress.mk>