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