1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 09:58:57 +00:00
hashcat/include/induct.h

21 lines
543 B
C

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _INDUCT_H
#define _INDUCT_H
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
static const char INDUCT_DIR[] = "induct";
int induct_ctx_init (induct_ctx_t *induct_ctx, const user_options_t *user_options, const folder_config_t *folder_config, const time_t proc_start);
void induct_ctx_scan (induct_ctx_t *induct_ctx);
void induct_ctx_cleanup (induct_ctx_t *induct_ctx);
void induct_ctx_destroy (induct_ctx_t *induct_ctx);
#endif // _INDUCT_H