mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-17 13:31:58 +00:00
3daf0af480
Added docs/team.txt
38 lines
796 B
C
38 lines
796 B
C
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifndef _STATUS_H
|
|
#define _STATUS_H
|
|
|
|
#include <stdio.h>
|
|
#include <inttypes.h>
|
|
|
|
#define STATUS 0
|
|
#define STATUS_TIMER 10
|
|
#define MACHINE_READABLE 0
|
|
|
|
typedef enum status_rc
|
|
{
|
|
STATUS_STARTING = 0,
|
|
STATUS_INIT = 1,
|
|
STATUS_RUNNING = 2,
|
|
STATUS_PAUSED = 3,
|
|
STATUS_EXHAUSTED = 4,
|
|
STATUS_CRACKED = 5,
|
|
STATUS_ABORTED = 6,
|
|
STATUS_QUIT = 7,
|
|
STATUS_BYPASS = 8,
|
|
STATUS_STOP_AT_CHECKPOINT = 9,
|
|
STATUS_AUTOTUNE = 10
|
|
|
|
} status_rc_t;
|
|
|
|
void status_display_machine_readable ();
|
|
void status_display ();
|
|
void status_benchmark_automate ();
|
|
void status_benchmark ();
|
|
|
|
#endif // _STATUS_H
|