1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-10 01:49:01 +00:00
hashcat/include/user_options.h

36 lines
893 B
C
Raw Normal View History

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifndef _USER_OPTIONS_H
#define _USER_OPTIONS_H
#include <getopt.h>
int user_options_init (hashcat_ctx_t *hashcat_ctx);
void user_options_destroy (hashcat_ctx_t *hashcat_ctx);
int user_options_getopt (hashcat_ctx_t *hashcat_ctx, int argc, char **argv);
2016-09-20 15:04:31 +00:00
int user_options_sanity (hashcat_ctx_t *hashcat_ctx);
2016-09-21 09:09:12 +00:00
void user_options_session_auto (hashcat_ctx_t *hashcat_ctx);
void user_options_preprocess (hashcat_ctx_t *hashcat_ctx);
2016-10-02 21:30:31 +00:00
void user_options_postprocess (hashcat_ctx_t *hashcat_ctx);
void user_options_extra_init (hashcat_ctx_t *hashcat_ctx);
2016-09-20 15:04:31 +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
int user_options_check_files (hashcat_ctx_t *hashcat_ctx);
#endif // _USER_OPTIONS_H