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