2016-09-20 14:04:22 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _USER_OPTIONS_H
|
|
|
|
#define _USER_OPTIONS_H
|
|
|
|
|
|
|
|
#include <getopt.h>
|
|
|
|
|
2016-10-13 08:07:04 +00:00
|
|
|
int user_options_init (hashcat_ctx_t *hashcat_ctx);
|
2016-09-20 14:04:22 +00:00
|
|
|
|
2016-10-06 14:40:29 +00:00
|
|
|
void user_options_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-20 14:04:22 +00:00
|
|
|
|
2016-10-06 14:40:29 +00:00
|
|
|
int user_options_getopt (hashcat_ctx_t *hashcat_ctx, int argc, char **argv);
|
2016-09-20 15:04:31 +00:00
|
|
|
|
2016-10-06 14:40:29 +00:00
|
|
|
int user_options_sanity (hashcat_ctx_t *hashcat_ctx);
|
2016-09-21 09:09:12 +00:00
|
|
|
|
2017-03-02 18:57:34 +00:00
|
|
|
void user_options_session_auto (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
2016-10-06 14:40:29 +00:00
|
|
|
void user_options_preprocess (hashcat_ctx_t *hashcat_ctx);
|
2016-10-02 21:30:31 +00:00
|
|
|
|
2016-12-29 12:05:29 +00:00
|
|
|
void user_options_postprocess (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
2016-10-06 14:40:29 +00:00
|
|
|
void user_options_extra_init (hashcat_ctx_t *hashcat_ctx);
|
2016-09-20 15:04:31 +00:00
|
|
|
|
2016-10-06 14:40:29 +00:00
|
|
|
void user_options_extra_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-23 19:50:35 +00:00
|
|
|
|
2016-10-06 19:37:03 +00:00
|
|
|
u64 user_options_extra_amplifier (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
2016-10-06 14:25:24 +00:00
|
|
|
void user_options_logger (hashcat_ctx_t *hashcat_ctx);
|
2016-09-23 19:41:05 +00:00
|
|
|
|
2017-01-27 13:50:39 +00:00
|
|
|
int user_options_check_files (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
2017-10-14 10:54:34 +00:00
|
|
|
void user_options_info (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
2016-09-20 14:04:22 +00:00
|
|
|
#endif // _USER_OPTIONS_H
|