mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-24 00:51:05 +00:00
No need to check for cracked hashes in benchmark mode
This commit is contained in:
parent
b2ff9922c9
commit
94e9fe7836
@ -3402,7 +3402,10 @@ static void run_cracker (hc_device_param_t *device_param, const uint pws_cnt)
|
|||||||
* result
|
* result
|
||||||
*/
|
*/
|
||||||
|
|
||||||
check_cracked (device_param, salt_pos);
|
if (data.benchmark == 0)
|
||||||
|
{
|
||||||
|
check_cracked (device_param, salt_pos);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* progress
|
* progress
|
||||||
@ -6966,6 +6969,7 @@ int main (int argc, char **argv)
|
|||||||
gpu_temp_disable = 1;
|
gpu_temp_disable = 1;
|
||||||
|
|
||||||
#ifdef HAVE_HWMON
|
#ifdef HAVE_HWMON
|
||||||
|
gpu_temp_disable = 0;
|
||||||
powertune_enable = 1;
|
powertune_enable = 1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user