diff --git a/scripts/test.sh b/scripts/test.sh index d9d03beb2..44698206c 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -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 && diff --git a/testing/scripts/recipes/012_wolfssl.mk b/testing/scripts/recipes/012_wolfssl.mk index 30e35b930..ddb7ee2c6 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.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 \