2016-09-11 09:42:19 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 09:42:19 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2023-01-30 14:41:12 +00:00
|
|
|
#ifndef HC_DEBUGFILE_H
|
|
|
|
#define HC_DEBUGFILE_H
|
2016-09-11 09:42:19 +00:00
|
|
|
|
2016-09-13 08:38:59 +00:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-10-06 08:55:14 +00:00
|
|
|
int debugfile_init (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void debugfile_destroy (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void debugfile_write_append (hashcat_ctx_t *hashcat_ctx, const u8 *rule_buf, const u32 rule_len, const u8 *mod_plain_ptr, const u32 mod_plain_len, const u8 *orig_plain_ptr, const u32 orig_plain_len);
|
2016-09-13 08:38:59 +00:00
|
|
|
|
2023-01-30 14:41:12 +00:00
|
|
|
#endif // HC_DEBUGFILE_H
|