mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 20:39:17 +00:00
28 lines
889 B
C
28 lines
889 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _STATUS_H
|
|
#define _STATUS_H
|
|
|
|
#include <stdio.h>
|
|
#include <time.h>
|
|
#include <inttypes.h>
|
|
|
|
double get_avg_exec_time (hc_device_param_t *device_param, const int last_num_entries);
|
|
|
|
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);
|
|
|
|
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);
|
|
|
|
int status_ctx_init (hashcat_ctx_t *hashcat_ctx);
|
|
void status_ctx_destroy (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
#endif // _STATUS_H
|