1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 08:08:10 +00:00

allow both enabling and disabling of restore point update (implemented with issue #10)

This commit is contained in:
philsmd 2015-12-07 23:51:51 +01:00
parent 968265fffb
commit feeb44882b
2 changed files with 22 additions and 5 deletions

View File

@ -17512,7 +17512,6 @@ int main (int argc, char **argv)
hc_thread_wait (devices_cnt, c_threads);
local_free (c_threads);
data.restore = 0;

View File

@ -8364,11 +8364,23 @@ void bypass ()
void stop_at_checkpoint ()
{
if (data.devices_status != STATUS_RUNNING) return;
if (data.devices_status != STATUS_STOP_AT_CHECKPOINT)
{
if (data.devices_status != STATUS_RUNNING) return;
}
// this feature only makes sense if --restore-disable was not specified
if (data.restore_disable == 0)
if (data.restore_disable == 1)
{
log_info ("WARNING: this feature is disabled when --restore-disable was specified");
return;
}
// check if monitoring of Restore Point updates should be enabled or disabled
if (data.devices_status != STATUS_STOP_AT_CHECKPOINT)
{
data.devices_status = STATUS_STOP_AT_CHECKPOINT;
@ -8376,11 +8388,17 @@ void stop_at_checkpoint ()
data.checkpoint_cur_words = get_lowest_words_done ();
log_info ("Checkpoint enabled, will quit when Restore Point updates next time");
log_info ("Checkpoint enabled: will quit at next Restore Point update");
}
else
{
log_info ("WARNING: this feature is disabled when --restore-disable was specified");
data.devices_status = STATUS_RUNNING;
// reset the global value for checkpoint checks
data.checkpoint_cur_words = 0;
log_info ("Checkpoint disabled: Restore Point updates will no longer be monitored");
}
}