mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-13 19:28:56 +00:00
32 lines
715 B
C
32 lines
715 B
C
|
/**
|
||
|
* Author......: Jens Steube <jens.steube@gmail.com>
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#ifndef _WORDLIST_H
|
||
|
#define _WORDLIST_H
|
||
|
|
||
|
typedef struct
|
||
|
{
|
||
|
char *buf;
|
||
|
u32 incr;
|
||
|
u32 avail;
|
||
|
u32 cnt;
|
||
|
u32 pos;
|
||
|
|
||
|
} wl_data_t;
|
||
|
|
||
|
uint convert_from_hex (char *line_buf, const uint line_len);
|
||
|
|
||
|
void load_segment (wl_data_t *wl_data, FILE *fd);
|
||
|
|
||
|
void get_next_word_lm (char *buf, u32 sz, u32 *len, u32 *off);
|
||
|
void get_next_word_uc (char *buf, u32 sz, u32 *len, u32 *off);
|
||
|
void get_next_word_std (char *buf, u32 sz, u32 *len, u32 *off);
|
||
|
|
||
|
void get_next_word (wl_data_t *wl_data, FILE *fd, char **out_buf, uint *out_len);
|
||
|
|
||
|
void pw_add (hc_device_param_t *device_param, const u8 *pw_buf, const int pw_len);
|
||
|
|
||
|
#endif // _WORDLIST_H
|