2016-09-06 11:16:38 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-06 11:16:38 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-09-06 16:44:05 +00:00
|
|
|
#ifndef _TERMINAL_H
|
|
|
|
#define _TERMINAL_H
|
2016-09-06 11:16:38 +00:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2016-09-11 08:39:19 +00:00
|
|
|
#include <string.h>
|
2016-09-06 11:16:38 +00:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
2017-02-23 23:55:06 +00:00
|
|
|
#if defined (_WIN)
|
|
|
|
#include <windows.h>
|
|
|
|
#else
|
2016-09-06 11:16:38 +00:00
|
|
|
#include <termios.h>
|
2016-09-07 20:29:57 +00:00
|
|
|
#if defined (__APPLE__)
|
2016-09-06 20:25:54 +00:00
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#endif // __APPLE__
|
2016-09-06 11:16:38 +00:00
|
|
|
#endif // _WIN
|
|
|
|
|
2016-10-23 15:31:22 +00:00
|
|
|
void welcome_screen (hashcat_ctx_t *hashcat_ctx, const char *version_tag);
|
2016-10-06 18:57:29 +00:00
|
|
|
void goodbye_screen (hashcat_ctx_t *hashcat_ctx, const time_t proc_start, const time_t proc_stop);
|
2016-09-28 21:53:46 +00:00
|
|
|
|
2016-10-30 17:55:27 +00:00
|
|
|
int setup_console (void);
|
2016-09-28 21:40:16 +00:00
|
|
|
|
2016-10-30 17:55:27 +00:00
|
|
|
void send_prompt (void);
|
|
|
|
void clear_prompt (void);
|
2016-09-11 08:39:19 +00:00
|
|
|
|
2016-09-15 02:21:41 +00:00
|
|
|
void *thread_keypress (void *p);
|
|
|
|
|
2016-09-08 07:21:25 +00:00
|
|
|
#if defined (_WIN)
|
|
|
|
void SetConsoleWindowSize (const int x);
|
|
|
|
#endif
|
|
|
|
|
2016-10-30 17:55:27 +00:00
|
|
|
int tty_break(void);
|
|
|
|
int tty_getchar(void);
|
|
|
|
int tty_fix(void);
|
2016-09-06 16:44:05 +00:00
|
|
|
|
2017-03-24 09:45:40 +00:00
|
|
|
void compress_terminal_line_length (char *out_buf, const size_t keep_from_beginning, const size_t keep_from_end);
|
|
|
|
|
2016-12-09 22:44:43 +00:00
|
|
|
void opencl_info (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void opencl_info_compact (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
|
|
|
|
void status_progress_machine_readable (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_progress (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_speed_machine_readable (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_speed (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_display_machine_readable (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_display (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_benchmark_machine_readable (hashcat_ctx_t *hashcat_ctx);
|
|
|
|
void status_benchmark (hashcat_ctx_t *hashcat_ctx);
|
2016-10-25 14:40:06 +00:00
|
|
|
|
|
|
|
#endif // _TERMINAL_H
|