mirror of
https://github.com/hashcat/hashcat.git
synced 2025-02-18 10:32:04 +00:00
Make tmp_size a real size_t as with latest GPU number can exceed 2^32
This commit is contained in:
parent
724374c885
commit
1cf6a078b0
@ -829,10 +829,13 @@ struct hashconfig
|
|||||||
u32 dgst_pos3;
|
u32 dgst_pos3;
|
||||||
|
|
||||||
u32 is_salted;
|
u32 is_salted;
|
||||||
u32 esalt_size;
|
|
||||||
u32 hook_salt_size;
|
// sizes have to be size_t
|
||||||
u32 tmp_size;
|
|
||||||
u32 hook_size;
|
size_t esalt_size;
|
||||||
|
size_t hook_salt_size;
|
||||||
|
size_t tmp_size;
|
||||||
|
size_t hook_size;
|
||||||
|
|
||||||
// password length limit
|
// password length limit
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user