We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents a4419fa + a4c24d5 commit 2b0fdfdCopy full SHA for 2b0fdfd
1 file changed
testssl.sh
@@ -10557,7 +10557,12 @@ run_fs() {
10557
fi
10558
10559
done
10560
- [[ -z "$ciphers_to_test" ]] && [[ -z "$tls13_ciphers_to_test" ]] && break
+ if "$HAS_TLS13"; then
10561
+ [[ "$proto" == -no_ssl2 ]] && [[ -z "$tls13_ciphers_to_test" ]] && break
10562
+ [[ "$proto" =~ -no_tls1_3 ]] && [[ -z "$ciphers_to_test" ]] && break
10563
+ else
10564
+ [[ -z "$ciphers_to_test" ]] && break
10565
+ fi
10566
if [[ "$proto" =~ curves1 ]]; then
10567
curves_option="-curves $curves_list1"
10568
elif [[ "$proto" =~ curves2 ]]; then
0 commit comments