2016-09-08 07:21:25 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-08 07:21:25 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _STATUS_H
|
|
|
|
#define _STATUS_H
|
|
|
|
|
|
|
|
#include <stdio.h>
|
2016-09-29 22:38:29 +00:00
|
|
|
#include <time.h>
|
2016-09-08 07:21:25 +00:00
|
|
|
#include <inttypes.h>
|
|
|
|
|
2016-09-14 14:07:24 +00:00
|
|
|
double get_avg_exec_time (hc_device_param_t *device_param, const int last_num_entries);
|
|
|
|
|
2016-10-06 07:47:34 +00:00
|
|
|
void status_display_machine_readable (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_display (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_benchmark_automate (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_benchmark (hashcat_ctx_t *hashcat_ctx);
|
2016-09-29 20:27:04 +00:00
|
|
|
|
2016-10-06 07:47:34 +00:00
|
|
|
int status_progress_init (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_progress_destroy (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_progress_reset (hashcat_ctx_t *hashcat_ctx);
|
2016-09-29 21:25:29 +00:00
|
|
|
|
2016-10-06 07:47:34 +00:00
|
|
|
int status_ctx_init (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
|
2016-09-08 07:21:25 +00:00
|
|
|
|
|
|
|
#endif // _STATUS_H
|