2016-09-08 12:36:15 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-08 12:36:15 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2023-01-30 14:41:12 +00:00
|
|
|
#ifndef HC_HLFMT_H
|
|
|
|
#define HC_HLFMT_H
|
2016-09-08 12:36:15 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-09-10 15:35:58 +00:00
|
|
|
#define HLFMTS_CNT 11
|
|
|
|
|
2017-11-14 04:46:26 +00:00
|
|
|
const char *strhlfmt (const u32 hashfile_format);
|
2016-09-08 12:36:15 +00:00
|
|
|
|
2018-12-14 11:21:14 +00:00
|
|
|
void hlfmt_hash (hashcat_ctx_t *hashcat_ctx, u32 hashfile_format, char *line_buf, const int line_len, char **hashbuf_pos, int *hashbuf_len);
|
|
|
|
void hlfmt_user (hashcat_ctx_t *hashcat_ctx, u32 hashfile_format, char *line_buf, const int line_len, char **userbuf_pos, int *userbuf_len);
|
2016-09-08 12:36:15 +00:00
|
|
|
|
2019-06-26 17:06:46 +00:00
|
|
|
u32 hlfmt_detect (hashcat_ctx_t *hashcat_ctx, HCFILE *fp, u32 max_check);
|
2016-09-08 12:36:15 +00:00
|
|
|
|
2023-01-30 14:41:12 +00:00
|
|
|
#endif // HC_HLFMT_H
|