From e09d07868b4bcfd3fc4c9c250e0899c31887e168 Mon Sep 17 00:00:00 2001 From: Gabriele Gristina Date: Sat, 22 Apr 2023 18:57:00 +0200 Subject: [PATCH] Fixed minimum password length in module of hash-mode 28200 --- docs/changes.txt | 1 + tools/test_modules/m28200.pm | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/docs/changes.txt b/docs/changes.txt index aa0ef815d..6c900b064 100644 --- a/docs/changes.txt +++ b/docs/changes.txt @@ -56,6 +56,7 @@ - Fixed display problem of the "Optimizers applied" list for algorithms using OPTI_TYPE_SLOW_HASH_SIMD_INIT2 and/or OPTI_TYPE_SLOW_HASH_SIMD_LOOP2 - Fixed incompatible pointer types (salt1 and salt2 buf) in 31700 a3 kernel - Fixed incompatible pointer types (salt1 and salt2 buf) in 3730 a3 kernel +- Fixed minimum password length in module of hash-mode 28200 - Handle signed/unsigned PDF permission P value for all PDF hash-modes ## diff --git a/tools/test_modules/m28200.pm b/tools/test_modules/m28200.pm index 85bde1ec1..c8ae72830 100644 --- a/tools/test_modules/m28200.pm +++ b/tools/test_modules/m28200.pm @@ -12,7 +12,7 @@ use Crypt::AuthEnc::GCM; use Crypt::ScryptKDF qw (scrypt_raw); use MIME::Base64 qw (decode_base64 encode_base64); -sub module_constraints { [[0, 256], [64, 64], [-1, -1], [-1, -1], [-1, -1]] } +sub module_constraints { [[4, 256], [64, 64], [-1, -1], [-1, -1], [-1, -1]] } sub module_generate_hash {