1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-09 17:38:58 +00:00
hashcat/include/hlfmt.h

21 lines
554 B
C
Raw Normal View History

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _HLFMT_H
#define _HLFMT_H
#include <stdio.h>
#define HLFMTS_CNT 11
2016-10-04 04:35:49 +00:00
char *strhlfmt (const u32 hashfile_format);
2016-10-06 19:12:32 +00:00
void hlfmt_hash (hashcat_ctx_t *hashcat_ctx, u32 hashfile_format, char *line_buf, int line_len, char **hashbuf_pos, int *hashbuf_len);
void hlfmt_user (hashcat_ctx_t *hashcat_ctx, u32 hashfile_format, char *line_buf, int line_len, char **userbuf_pos, int *userbuf_len);
2016-10-06 19:12:32 +00:00
u32 hlfmt_detect (hashcat_ctx_t *hashcat_ctx, FILE *fp, u32 max_check);
#endif // _HLFMT_H