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

Merge pull request #3409 from philsmd/29600_salt_arr_size

fix length of salt_buf for -m 29600
This commit is contained in:
Jens Steube 2022-08-04 09:41:01 +02:00 committed by GitHub
commit 99be4f9fd8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 2 deletions

View File

@ -25,12 +25,14 @@ typedef struct pbkdf_sha1_tmp
u32 dgst[32];
u32 out[32];
} pbkdf_sha1_tmp_t;
typedef struct terra
{
u32 salt_buf[8];
u32 salt_buf[4];
u32 ct_block_a[4];
} terra_t;
#define FIXED_SALT_SIZE 16

View File

@ -58,7 +58,7 @@ typedef struct pbkdf_sha1_tmp
typedef struct terra
{
u32 salt_buf[8];
u32 salt_buf[4];
u32 ct_block_a[4];
} terra_t;