aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>2020-08-21 12:34:05 +0200
committerManuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>2020-08-21 12:34:05 +0200
commit6c77bc6de20336f93459172553c254d818a4a32a (patch)
tree2bed3b784da239253dc3adf8162b0aeb663bf80a
parent499bf4c0c836de896eac1104971736497abf09eb (diff)
downloadmbed-tls-6c77bc6de20336f93459172553c254d818a4a32a.tar.gz
compat.sh: stop using allow_sha1
After the changes of certificates, it's no longer needed. Signed-off-by: Manuel Pégourié-Gonnard <manuel.pegourie-gonnard@arm.com>
-rwxr-xr-xtests/compat.sh10
1 files changed, 0 insertions, 10 deletions
diff --git a/tests/compat.sh b/tests/compat.sh
index 3ee084401..68b9f740e 100755
--- a/tests/compat.sh
+++ b/tests/compat.sh
@@ -967,11 +967,6 @@ setup_arguments()
else
M_CLIENT_ARGS="$M_CLIENT_ARGS crt_file=none key_file=none"
fi
-
- # Allow SHA-1. It's disabled by default for security reasons but
- # our tests still use certificates signed with it.
- M_SERVER_ARGS="$M_SERVER_ARGS allow_sha1=1"
- M_CLIENT_ARGS="$M_CLIENT_ARGS allow_sha1=1"
;;
"PSK")
@@ -984,11 +979,6 @@ setup_arguments()
M_CLIENT_ARGS="$M_CLIENT_ARGS psk=6162636465666768696a6b6c6d6e6f70 crt_file=none key_file=none"
O_CLIENT_ARGS="$O_CLIENT_ARGS -psk 6162636465666768696a6b6c6d6e6f70"
G_CLIENT_ARGS="$G_CLIENT_ARGS --pskusername Client_identity --pskkey=6162636465666768696a6b6c6d6e6f70"
-
- # Allow SHA-1. It's disabled by default for security reasons but
- # our tests still use certificates signed with it.
- M_SERVER_ARGS="$M_SERVER_ARGS allow_sha1=1"
- M_CLIENT_ARGS="$M_CLIENT_ARGS allow_sha1=1"
;;
esac
}