Add more tracker for amplifier and iterations to status screen

This commit is contained in:
jsteube
2018-08-18 02:17:42 +02:00
parent 27db8ced7e
commit 067ffa9d64
5 changed files with 43 additions and 3 deletions
+2
View File
@@ -81,7 +81,9 @@ int status_get_cpt_avg_day (const hashcat_ctx_t *hashcat_
char *status_get_cpt (const hashcat_ctx_t *hashcat_ctx);
int status_get_salt_pos_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
int status_get_innerloop_pos_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
int status_get_innerloop_left_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
int status_get_iteration_pos_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
int status_get_iteration_left_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
char *status_get_hwmon_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
int status_get_corespeed_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
int status_get_memoryspeed_dev (const hashcat_ctx_t *hashcat_ctx, const int device_id);
+3 -1
View File
@@ -689,7 +689,7 @@ typedef enum user_options_map
IDX_VERACRYPT_PIM = 0xff3e,
IDX_VERSION_LOWER = 'v',
IDX_VERSION = 'V',
IDX_WORKLOAD_PROFILE = 'w'
IDX_WORKLOAD_PROFILE = 'w',
} user_options_map_t;
@@ -1864,7 +1864,9 @@ typedef struct device_info
int vector_width_dev;
int salt_pos_dev;
int innerloop_pos_dev;
int innerloop_left_dev;
int iteration_pos_dev;
int iteration_left_dev;
} device_info_t;