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

20 lines
398 B
C
Raw Normal View History

2016-09-11 09:42:19 +00:00
/**
* Author......: See docs/credits.txt
2016-09-11 09:42:19 +00:00
* 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";
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-11 09:42:19 +00:00
#endif // _INDUCT_H