1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

Fixed minimum password length in module of hash-mode 29800

This commit is contained in:
Gabriele Gristina 2023-04-18 20:13:39 +02:00
parent 8a1c81ab8c
commit 38f3b77a3a
2 changed files with 2 additions and 1 deletions

View File

@ -53,6 +53,7 @@
- Fixed bug in --stdout that caused certain rules to malfunction
- Fixed incompatible pointer types (salt1 and salt2 buf) in 3730 a3 kernel
- Handle signed/unsigned PDF permission P value for all PDF hash-modes
- Fixed minimum password length in module of hash-mode 29800
##
## Technical

View File

@ -12,7 +12,7 @@ use Crypt::ScryptKDF qw (scrypt_raw);
use Encode;
use Crypt::CBC;
sub module_constraints { [[0, 256], [8, 8], [-1, -1], [-1, -1], [-1, -1]] }
sub module_constraints { [[8, 256], [8, 8], [-1, -1], [-1, -1], [-1, -1]] }
my $SCRYPT_N = 32768;
my $SCRYPT_R = 8;