From: Tobias Brunner Date: Fri, 21 Nov 2025 09:49:18 +0000 (+0100) Subject: Use wolfSSL 5.8.4 for tests X-Git-Tag: 6.0.4rc1~3 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=831d8454df45267dfc220b713b1a92fdb9760dfe;p=thirdparty%2Fstrongswan.git Use wolfSSL 5.8.4 for tests Also remove the --enable-md4 option. We never supported MD4 via wolfSSL, as it's not available via the hash API we use (would require explicit MD4-specific functions and structures). --- diff --git a/scripts/test.sh b/scripts/test.sh index be8924377a..7effe0a71a 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -39,7 +39,7 @@ build_botan() build_wolfssl() { - WOLFSSL_REV=v5.8.2-stable + WOLFSSL_REV=v5.8.4-stable WOLFSSL_DIR=$DEPS_BUILD_DIR/wolfssl if test -d "$WOLFSSL_DIR"; then @@ -57,7 +57,7 @@ build_wolfssl() --enable-curve25519 --enable-curve448 --enable-des3 --enable-ecccustcurves --enable-ed25519 --enable-ed448 --enable-keygen --enable-mlkem --with-max-rsa-bits=8192 - --enable-md4 --enable-rsapss --enable-sha3 --enable-shake256" + --enable-rsapss --enable-sha3 --enable-shake256" git clone https://github.com/wolfSSL/wolfssl.git $WOLFSSL_DIR && cd $WOLFSSL_DIR && diff --git a/testing/scripts/recipes/012_wolfssl.mk b/testing/scripts/recipes/012_wolfssl.mk index 66047bb627..6b107a9794 100644 --- a/testing/scripts/recipes/012_wolfssl.mk +++ b/testing/scripts/recipes/012_wolfssl.mk @@ -2,7 +2,7 @@ PKG = wolfssl SRC = https://github.com/wolfSSL/$(PKG).git -REV = v5.8.2-stable +REV = v5.8.4-stable NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN) @@ -26,7 +26,6 @@ CONFIG_OPTS = \ --enable-ed25519 \ --enable-ed448 \ --enable-keygen \ - --enable-md4 \ --enable-mlkem \ --enable-rsapss \ --enable-sha3 \