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 _INDUCT_H
|
|
|
|
#define _INDUCT_H
|
|
|
|
|
2016-09-14 13:08:22 +00:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2016-09-22 15:06:53 +00:00
|
|
|
static const char INDUCT_DIR[] = "induct";
|
2016-09-14 13:08:22 +00:00
|
|
|
|
2016-10-06 14:46:08 +00:00
|
|
|
int induct_ctx_init (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void induct_ctx_scan (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void induct_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-14 13:08:22 +00:00
|
|
|
|
2016-09-11 09:42:19 +00:00
|
|
|
#endif // _INDUCT_H
|