From ee9d410326b65a0c11c5559c213ea2f5404d5667 Mon Sep 17 00:00:00 2001 From: Jacob Barthelmeh Date: Thu, 7 Sep 2017 16:58:37 -0600 Subject: [PATCH] anon flag with interop script --- scripts/openssl.test | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/scripts/openssl.test b/scripts/openssl.test index 089e43160..348ad9f27 100755 --- a/scripts/openssl.test +++ b/scripts/openssl.test @@ -262,20 +262,23 @@ do # check for psk suite and turn on client psk if so psk="" + adh="" port=$openssl_port case $wolfSuite in *ECDH-RSA*) port=$ecdh_port ;; *PSK*) psk="-s " ;; + *ADH*) + adh="-a " ;; esac if [ $version -lt 4 ] then - ./examples/client/client -p $port -g -r -l $wolfSuite -v $version $psk + ./examples/client/client -p $port -g -r -l $wolfSuite -v $version $psk $adh else # do all versions - ./examples/client/client -p $port -g -r -l $wolfSuite $psk + ./examples/client/client -p $port -g -r -l $wolfSuite $psk $adh fi client_result=$?