Merge pull request #3083 from ericcgu/ericcgu-patch-1

fix: inverted return check in sym-encrypt() at testssl.sh:14741
This commit is contained in:
Dirk Wetter
2026-07-09 12:26:24 +02:00
committed by GitHub
+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