Skip to content

Commit

Permalink
add wolfssl_no_resume flag to openssl.test
Browse files Browse the repository at this point in the history
  • Loading branch information
JacobBarthelmeh committed Dec 25, 2024
1 parent 5b257fe commit 0522af9
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions scripts/openssl.test
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,7 @@ anon_wolfssl_pid=$no_pid
wolf_cases_tested=0
wolf_cases_total=0
counter=0
wolfssl_no_resume=""
testing_summary="OpenSSL Interop Testing Summary:\nVersion\tTested\t#Found\t#wolf\t#Found\t#OpenSSL\n"
versionName="Invalid"
if [ "$OPENSSL" = "" ]; then
Expand Down Expand Up @@ -328,6 +329,10 @@ do_wolfssl_client() {
then
wolfssl_resume=
fi
if [ "$wolfssl_no_resume" = "yes" ]
then
wolfssl_resume=
fi
if [ "$version" != "5" -a "$version" != "" ]
then
echo "#"
Expand Down Expand Up @@ -1228,7 +1233,7 @@ do
done
IFS="$OIFS" #restore separator

# Test for RSA-PSS certs
# Test for RSA-PSS certs interop
echo -e "Doing interop RSA-PSS test"

key_file=${CERT_DIR}/rsapss/server-rsapss-priv.pem
Expand All @@ -1242,7 +1247,7 @@ key="${CERT_DIR}/client-key.pem"
caCert="${CERT_DIR}/rsapss/ca-rsapss.pem"
crl="-C"
wolfSuite="ALL"
wolfssl_resume=""
wolfssl_no_resume="yes"
version="4"
port=$server_port
do_wolfssl_client
Expand Down

0 comments on commit 0522af9

Please sign in to comment.