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
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _OUTFILE_CHECK_H
|
|
|
|
#define _OUTFILE_CHECK_H
|
|
|
|
|
2016-09-30 10:28:29 +00:00
|
|
|
#include <unistd.h>
|
|
|
|
#include <errno.h>
|
|
|
|
|
2016-09-16 15:01:18 +00:00
|
|
|
#define OUTFILES_DIR "outfiles"
|
|
|
|
|
2016-09-15 02:04:54 +00:00
|
|
|
void *thread_outfile_remove (void *p);
|
|
|
|
|
2016-10-06 14:43:02 +00:00
|
|
|
int outcheck_ctx_init (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void outcheck_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-22 20:40:47 +00:00
|
|
|
|
2016-09-11 09:42:19 +00:00
|
|
|
#endif // _OUTFILE_CHECK_H
|