You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
hashcat/include/debugfile.h

16 lines
477 B

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef HC_DEBUGFILE_H
#define HC_DEBUGFILE_H
#include <stdio.h>
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);
#endif // HC_DEBUGFILE_H