mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-21 15:48:08 +00:00
Add dynamicx_t type for later use in potfile.c and outfile.c and also add to hashinfo_t
This commit is contained in:
parent
252e7614da
commit
7faa6a94a5
@ -889,6 +889,13 @@ typedef void * hc_dynfunc_t;
|
||||
* structs
|
||||
*/
|
||||
|
||||
typedef struct dynamicx
|
||||
{
|
||||
char *dynamicx_buf;
|
||||
u32 dynamicx_len;
|
||||
|
||||
} dynamicx_t;
|
||||
|
||||
typedef struct user
|
||||
{
|
||||
char *user_name;
|
||||
@ -916,9 +923,10 @@ typedef struct split
|
||||
|
||||
typedef struct hashinfo
|
||||
{
|
||||
user_t *user;
|
||||
char *orighash;
|
||||
split_t *split;
|
||||
dynamicx_t *dynamicx_t;
|
||||
user_t *user;
|
||||
char *orighash;
|
||||
split_t *split;
|
||||
|
||||
} hashinfo_t;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user