summaryrefslogtreecommitdiff
path: root/src/regress/lib/libssl/dtls
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/libssl/dtls
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 'src/regress/lib/libssl/dtls')
-rw-r--r--src/regress/lib/libssl/dtls/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/regress/lib/libssl/dtls/Makefile b/src/regress/lib/libssl/dtls/Makefile
index 438cd5c7ff..b58dae61b6 100644
--- a/src/regress/lib/libssl/dtls/Makefile
+++ b/src/regress/lib/libssl/dtls/Makefile
@@ -1,4 +1,4 @@
1# $OpenBSD: Makefile,v 1.3 2022/01/07 09:07:00 tb Exp $ 1# $OpenBSD: Makefile,v 1.4 2024/03/20 10:38:05 jsing Exp $
2 2
3PROG= dtlstest 3PROG= dtlstest
4LDADD= ${SSL_INT} -lcrypto 4LDADD= ${SSL_INT} -lcrypto
@@ -11,10 +11,11 @@ CFLAGS+= -I${.CURDIR}/../../../../lib/libssl
11REGRESS_TARGETS= \ 11REGRESS_TARGETS= \
12 regress-dtlstest 12 regress-dtlstest
13 13
14# XXX(jsing): use CA root and chain
14regress-dtlstest: ${PROG} 15regress-dtlstest: ${PROG}
15 ./dtlstest \ 16 ./dtlstest \
16 ${.CURDIR}/../../libssl/certs/server.pem \ 17 ${.CURDIR}/../../libssl/certs/server1-rsa.pem \
17 ${.CURDIR}/../../libssl/certs/server.pem \ 18 ${.CURDIR}/../../libssl/certs/server1-rsa.pem \
18 ${.CURDIR}/../../libssl/certs/ca.pem 19 ${.CURDIR}/../../libssl/certs/ca-int-rsa.pem
19 20
20.include <bsd.regress.mk> 21.include <bsd.regress.mk>