mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
Merge pull request #3691 from matrix/fix_testModule_29800
Fixed minimum password length in module of hash-mode 29800
This commit is contained in:
commit
bd3aca92f9
@ -59,6 +59,7 @@
|
|||||||
- Fixed incompatible pointer types (salt1 and salt2 buf) in 31700 a3 kernel
|
- 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 incompatible pointer types (salt1 and salt2 buf) in 3730 a3 kernel
|
||||||
- Handle signed/unsigned PDF permission P value for all PDF hash-modes
|
- Handle signed/unsigned PDF permission P value for all PDF hash-modes
|
||||||
|
- Fixed minimum password length in module of hash-mode 29800
|
||||||
- Fixed buffer overflow on module_26600.c / module_hash_encode()
|
- Fixed buffer overflow on module_26600.c / module_hash_encode()
|
||||||
|
|
||||||
##
|
##
|
||||||
|
@ -12,7 +12,7 @@ use Crypt::ScryptKDF qw (scrypt_raw);
|
|||||||
use Encode;
|
use Encode;
|
||||||
use Crypt::CBC;
|
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_N = 32768;
|
||||||
my $SCRYPT_R = 8;
|
my $SCRYPT_R = 8;
|
||||||
|
Loading…
Reference in New Issue
Block a user