Skip to content

Commit 0ee7d7c

Browse files
committed
1. Add DES3 enable to full commit test.
2. Added DES3 to the list of FIPS prereqs.
1 parent e3bb4c2 commit 0ee7d7c

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

commit-tests.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ RESULT=$?
2323

2424
# make sure full config is ok
2525
echo -e "\n\nTesting full config as well...\n\n"
26-
./configure --enable-opensslextra --enable-dh --enable-ecc --enable-dtls --enable-aesgcm --enable-aesccm --enable-hc128 --enable-sniffer --enable-psk --enable-rabbit --enable-camellia --enable-sha512 --enable-crl --enable-ocsp --enable-savesession --enable-savecert --enable-atomicuser --enable-pkcallbacks --enable-scep;
26+
./configure --enable-opensslextra --enable-des3 --enable-dh --enable-ecc --enable-dtls --enable-aesgcm --enable-aesccm --enable-hc128 --enable-sniffer --enable-psk --enable-rabbit --enable-camellia --enable-sha512 --enable-crl --enable-ocsp --enable-savesession --enable-savecert --enable-atomicuser --enable-pkcallbacks --enable-scep;
2727
RESULT=$?
2828
[ $RESULT -ne 0 ] && echo -e "\n\nFull config ./configure failed" && exit 1
2929

configure.ac

+5
Original file line numberDiff line numberDiff line change
@@ -1491,6 +1491,11 @@ then
14911491
AM_CFLAGS="$AM_CFLAGS -DHAVE_AESGCM"
14921492
AM_CONDITIONAL([BUILD_SHA512], [test "x$ENABLED_SHA512" = "xyes"])
14931493
fi
1494+
# requires DES3
1495+
if test "x$ENABLED_DES3" = "xno"
1496+
then
1497+
ENABLED_DES3="yes"
1498+
fi
14941499
AM_CFLAGS="$AM_CFLAGS -DHAVE_FIPS"
14951500
fi
14961501

0 commit comments

Comments
 (0)