mirror of
https://github.com/hashcat/hashcat.git
synced 2024-12-22 22:58:30 +00:00
Fixed missing to copy the dictfile to dictfile_padded buffer
This commit is contained in:
parent
d706f90a75
commit
d2527d142a
@ -383,6 +383,8 @@ int count_words (hashcat_ctx_t *hashcat_ctx, HCFILE *fp, const char *dictfile, u
|
||||
|
||||
u32 *dictfile_padded = (u32 *) hcmalloc (dictfile_len + 64); // padding required for sha1_update()
|
||||
|
||||
memcpy (dictfile_padded, dictfile, dictfile_len);
|
||||
|
||||
sha1_ctx_t sha1_ctx;
|
||||
sha1_init (&sha1_ctx);
|
||||
sha1_update (&sha1_ctx, dictfile_padded, dictfile_len);
|
||||
|
Loading…
Reference in New Issue
Block a user