From 2d1b217c6c0044baa386d2f5870b37f4f69a1523 Mon Sep 17 00:00:00 2001 From: Martin Schurz Date: Wed, 13 Jan 2021 15:07:12 +0100 Subject: [AUTH-9229] resolve inconsistency with AUTH-9230 --- include/tests_authentication | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'include/tests_authentication') diff --git a/include/tests_authentication b/include/tests_authentication index 3366bb9a..2712aa34 100644 --- a/include/tests_authentication +++ b/include/tests_authentication @@ -294,12 +294,12 @@ # disabled | shadowed | no password | locked account (can be literal *LOCK* or something like LOCKED) ;; *:\$5\$*| *:\$6\$*) - # sha256crypt | sha512crypt: check number of rounds, should be >5000 + # sha256crypt | sha512crypt: check number of rounds, should be >=5000 ROUNDS=$(echo "${METHOD}" | sed -n 's/.*rounds=\([0-9]*\)\$.*/\1/gp') if [ -z "${ROUNDS}" ]; then - echo 'sha256crypt/sha512crypt(default<=5000rounds)' - elif [ "${ROUNDS}" -le 5000 ]; then - echo 'sha256crypt/sha512crypt(<=5000rounds)' + echo 'sha256crypt/sha512crypt(default=5000rounds)' + elif [ "${ROUNDS}" -lt 5000 ]; then + echo 'sha256crypt/sha512crypt(<5000rounds)' fi ;; *:\$y\$* | *:\$gy\$* | *:\$2b\$* | *:\$7\$*) -- cgit v1.2.3