From 834efe4ff684a065c990ade78ca60604e14a9020 Mon Sep 17 00:00:00 2001 From: Daniel Pouzzner Date: Tue, 28 Sep 2021 11:41:56 -0500 Subject: [PATCH] fips-check.sh: update to test 140-3 using --enable-fips=v5-RC8 and the WCv5.0-RC8 version tags. --- fips-check.sh | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/fips-check.sh b/fips-check.sh index c44576ac8..e1ed610c5 100755 --- a/fips-check.sh +++ b/fips-check.sh @@ -267,17 +267,17 @@ solaris) MAKE=gmake ;; linuxv5) - FIPS_REPO="git@github.com:ejohnstown/fips.git" - FIPS_VERSION="fipsv3" - CRYPT_REPO="git@github.com:ejohnstown/wolfssl.git" - CRYPT_VERSION="fipsv3" + FIPS_REPO="git@github.com:wolfSSL/fips.git" + FIPS_VERSION="WCv5.0-RC8" + CRYPT_REPO="git@github.com:wolfSSL/wolfssl.git" + CRYPT_VERSION="WCv5.0-RC8" CRYPT_INC_PATH="wolfssl/wolfcrypt" CRYPT_SRC_PATH="wolfcrypt/src" WC_MODS=( aes sha sha256 sha512 rsa hmac random cmac dh ecc sha3 kdf ) - RNG_VERSION="fipsv3" + RNG_VERSION="WCv5.0-RC8" FIPS_SRCS=( fips.c fips_test.c wolfcrypt_first.c wolfcrypt_last.c ) FIPS_INCS=( fips.h ) - FIPS_OPTION="v5" + FIPS_OPTION="v5-RC8" COPY_DIRECT=( wolfcrypt/src/aes_asm.S wolfcrypt/src/aes_asm.asm wolfcrypt/src/sha256_asm.S wolfcrypt/src/sha512_asm.S ) ;; @@ -320,7 +320,7 @@ then cp "old-tree/$CRYPT_SRC_PATH/random.c" $CRYPT_SRC_PATH cp "old-tree/$CRYPT_INC_PATH/random.h" $CRYPT_INC_PATH fi -elif [ "x$FIPS_OPTION" == "xv2" ] || [ "x$FIPS_OPTION" == "xrand" ] || [ "x$FIPS_OPTION" == "xv5" ] +elif [ "x$FIPS_OPTION" == "xv2" ] || [ "x$FIPS_OPTION" == "xrand" ] || [ "x$FIPS_OPTION" == "xv5-RC8" ] then $GIT branch --no-track "my$CRYPT_VERSION" $CRYPT_VERSION # Checkout the fips versions of the wolfCrypt files from the repo.