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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _HLFMT_H
|
|
|
|
#define _HLFMT_H
|
|
|
|
|
|
|
|
#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-02-08 18:13:29 +00:00
|
|
|
void hlfmt_hash (hashcat_ctx_t *hashcat_ctx, u32 hashfile_format, char *line_buf, size_t line_len, char **hashbuf_pos, size_t *hashbuf_len);
|
|
|
|
void hlfmt_user (hashcat_ctx_t *hashcat_ctx, u32 hashfile_format, char *line_buf, size_t line_len, char **userbuf_pos, size_t *userbuf_len);
|
2016-09-08 12:36:15 +00:00
|
|
|
|
2016-10-06 19:12:32 +00:00
|
|
|
u32 hlfmt_detect (hashcat_ctx_t *hashcat_ctx, FILE *fp, u32 max_check);
|
2016-09-08 12:36:15 +00:00
|
|
|
|
|
|
|
#endif // _HLFMT_H
|