2016-09-11 11:42:19 +02:00
|
|
|
/**
|
2016-09-11 22:20:15 +02:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 11:42:19 +02:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _DEBUGFILE_H
|
|
|
|
#define _DEBUGFILE_H
|
|
|
|
|
2016-09-13 10:38:59 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
2016-10-06 10:55:14 +02: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 10:38:59 +02:00
|
|
|
|
2016-09-11 11:42:19 +02:00
|
|
|
#endif // _DEBUGFILE_H
|