2016-09-06 18:23:26 +02:00
|
|
|
/**
|
2016-09-11 22:20:15 +02:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-06 18:23:26 +02:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2016-09-22 11:05:04 +02:00
|
|
|
#include <stdlib.h>
|
2016-09-07 12:45:08 +02:00
|
|
|
#include <errno.h>
|
|
|
|
#include <dirent.h>
|
2016-09-06 18:23:26 +02:00
|
|
|
#include <unistd.h>
|
2016-09-22 11:05:04 +02:00
|
|
|
#include <limits.h>
|
2016-09-06 18:23:26 +02:00
|
|
|
|
2017-02-24 00:55:06 +01:00
|
|
|
#if defined (_WIN)
|
|
|
|
#include <windows.h>
|
|
|
|
#include <direct.h>
|
|
|
|
#else
|
2016-09-06 18:23:26 +02:00
|
|
|
#include <sys/types.h>
|
2016-09-22 11:05:04 +02:00
|
|
|
#include <pwd.h>
|
2016-09-07 22:29:57 +02:00
|
|
|
#if defined (__APPLE__)
|
2016-09-06 22:25:54 +02:00
|
|
|
#include <mach-o/dyld.h>
|
|
|
|
#endif // __APPLE__
|
2017-02-24 00:55:06 +01:00
|
|
|
#endif // _WIN
|
2016-09-06 18:23:26 +02:00
|
|
|
|
|
|
|
#define DOT_HASHCAT ".hashcat"
|
|
|
|
#define SESSIONS_FOLDER "sessions"
|
|
|
|
|
2016-09-11 10:53:29 +02:00
|
|
|
int sort_by_stringptr (const void *p1, const void *p2);
|
|
|
|
|
2016-09-07 12:45:08 +02:00
|
|
|
int count_dictionaries (char **dictionary_files);
|
|
|
|
|
2016-11-05 23:19:13 +01:00
|
|
|
char *first_file_in_directory (const char *path);
|
|
|
|
|
2016-11-20 22:54:52 +01:00
|
|
|
char **scan_directory (const char *path);
|
2016-09-21 23:06:11 +02:00
|
|
|
|
2016-10-10 09:12:36 +02:00
|
|
|
int folder_config_init (hashcat_ctx_t *hashcat_ctx, MAYBE_UNUSED const char *install_folder, MAYBE_UNUSED const char *shared_folder);
|
2016-10-06 16:17:29 +02:00
|
|
|
void folder_config_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-10-01 13:51:06 +02:00
|
|
|
|
2016-10-10 09:12:36 +02:00
|
|
|
int hc_mkdir (const char *name, MAYBE_UNUSED const int mode);
|