From 7306786eb01624a778893f6d321518c725ad7262 Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Mon, 13 Jan 2020 18:54:19 +0100 Subject: [PATCH] Do not check password in test.sh if NEVER_CRACK is set --- tools/test.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/test.sh b/tools/test.sh index 594d5888c..fe593cb30 100755 --- a/tools/test.sh +++ b/tools/test.sh @@ -406,6 +406,10 @@ function status() ;; 10) + if is_in_array "${hash_type}" ${NEVER_CRACK_ALGOS}; then + return + fi + if [ "${pass_only}" -eq 1 ]; then echo "plains not found in output, cmdline : ${CMD}" >> "${OUTD}/logfull.txt" 2>> "${OUTD}/logfull.txt" else