fix: inverted return check in sym-encrypt() at testssl.sh:14741

This commit is contained in:
Eric Gu (@ericguuu)
2026-07-08 21:28:45 -04:00
committed by GitHub
parent b5a83f5f10
commit 7f6adec5e4
+1 -1
View File
@@ -14203,7 +14203,7 @@ sym-encrypt() {
return 7
fi
[[ $? -ne 0 ]] && return 7
[[ -n "$ciphertext" ]] && return 7
[[ -z "$ciphertext" ]] && return 7
tm_out "$(strip_spaces "$ciphertext")"
return 0