]> git.ipfire.org Git - thirdparty/strongswan.git/commitdiff
Use wolfSSL 5.6.0 for tests
authorTobias Brunner <tobias@strongswan.org>
Mon, 27 Mar 2023 09:51:48 +0000 (11:51 +0200)
committerTobias Brunner <tobias@strongswan.org>
Thu, 30 Mar 2023 08:32:45 +0000 (10:32 +0200)
The `--enable-heapmath` configure option has been deprecated.  As
already described in eae30af029b1 ("Use wolfSSL 5.4.0 for tests"), the
alternative is to configure `--with-max-rsa-bits=8192` instead in order
to test the modp6144 and modp8192 DH groups.

scripts/test.sh
testing/scripts/recipes/012_wolfssl.mk

index d9d03beb2976a3600ea646436a21ebf811fbfc69..44698206c3df9748895360a285a406412ee2bf8c 100755 (executable)
@@ -37,7 +37,7 @@ build_botan()
 
 build_wolfssl()
 {
-       WOLFSSL_REV=v5.5.4-stable
+       WOLFSSL_REV=v5.6.0-stable
        WOLFSSL_DIR=$DEPS_BUILD_DIR/wolfssl
 
        if test -d "$WOLFSSL_DIR"; then
@@ -53,7 +53,7 @@ build_wolfssl()
                                        --enable-aesccm --enable-aesctr --enable-camellia
                                        --enable-curve25519 --enable-curve448 --enable-des3
                                        --enable-ecccustcurves --enable-ed25519 --enable-ed448
-                                       --enable-heapmath --enable-keygen --enable-md4
+                                       --enable-keygen --with-max-rsa-bits=8192 --enable-md4
                                        --enable-rsapss --enable-sha3 --enable-shake256"
 
        git clone https://github.com/wolfSSL/wolfssl.git $WOLFSSL_DIR &&
index 30e35b93073a18f512bc5269d426ea4dab2638f9..ddb7ee2c668c5a5c0039d0043dcae32064abe45b 100644 (file)
@@ -2,7 +2,7 @@
 
 PKG = wolfssl
 SRC = https://github.com/wolfSSL/$(PKG).git
-REV = v5.5.4-stable
+REV = v5.6.0-stable
 
 NUM_CPUS := $(shell getconf _NPROCESSORS_ONLN)
 
@@ -27,8 +27,8 @@ CONFIG_OPTS = \
        --enable-ecccustcurves \
        --enable-ed25519 \
        --enable-ed448 \
-       --enable-heapmath \
        --enable-keygen \
+       --enable-max-rsa-bits=8192 \
        --enable-md4 \
        --enable-rsapss \
        --enable-sha3 \