File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -10931,7 +10931,7 @@ run_fs() {
1093110931 # Versions of TLS prior to 1.3 close the connection if the client does not support the curve
1093210932 # used in the certificate. The easiest solution is to move the curves to the end of the list.
1093310933 # instead of removing them from the ClientHello. This is only needed if there is no RSA certificate.
10934- if ( ! "$HAS_TLS13" || [[ "$proto" == "-no_tls1_3" ]]) && [[ ! "$ecdhe_cipher_list" == *RSA* ]]; then
10934+ if { ! "$HAS_TLS13" || [[ "$proto" == "-no_tls1_3" ]]; } && [[ ! "$ecdhe_cipher_list" == *RSA* ]]; then
1093510935 while true; do
1093610936 curves_to_test=""
1093710937 for (( i=low; i < high; i++ )); do
@@ -11001,7 +11001,7 @@ run_fs() {
1100111001 # Versions of TLS prior to 1.3 close the connection if the client does not support the curve
1100211002 # used in the certificate. The easiest solution is to move the curves to the end of the list.
1100311003 # instead of removing them from the ClientHello. This is only needed if there is no RSA certificate.
11004- if ( [[ "$proto" == 03 ]] && [[ ! "$ecdhe_cipher_list" == *RSA* ]]) ; then
11004+ if [[ "$proto" == 03 ]] && [[ ! "$ecdhe_cipher_list" == *RSA* ]]; then
1100511005 while true; do
1100611006 curves_to_test=""
1100711007 for (( i=0; i < nr_curves; i++ )); do
You can’t perform that action at this time.
0 commit comments