mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-21 05:58:12 +00:00
Merge pull request #4056 from PenguinKeeper7/benchmark-relevant-options-fix
Show all autotune setting changes in -b
This commit is contained in:
commit
6de02c0b3b
@ -2332,21 +2332,21 @@ void user_options_info (hashcat_ctx_t *hashcat_ctx)
|
|||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "* --kernel-accel=%u", user_options->kernel_accel);
|
event_log_info (hashcat_ctx, "* --kernel-accel=%u", user_options->kernel_accel);
|
||||||
}
|
}
|
||||||
else if (user_options->kernel_loops_chgd == true)
|
|
||||||
|
if (user_options->kernel_loops_chgd == true)
|
||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "* --kernel-loops=%u", user_options->kernel_loops);
|
event_log_info (hashcat_ctx, "* --kernel-loops=%u", user_options->kernel_loops);
|
||||||
}
|
}
|
||||||
else if (user_options->kernel_threads_chgd == true)
|
|
||||||
|
if (user_options->kernel_threads_chgd == true)
|
||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "* --kernel-threads=%u", user_options->kernel_threads);
|
event_log_info (hashcat_ctx, "* --kernel-threads=%u", user_options->kernel_threads);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
if (user_options->workload_profile_chgd == true)
|
if (user_options->workload_profile_chgd == true)
|
||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "* --workload-profile=%u", user_options->workload_profile);
|
event_log_info (hashcat_ctx, "* --workload-profile=%u", user_options->workload_profile);
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
event_log_info (hashcat_ctx, NULL);
|
event_log_info (hashcat_ctx, NULL);
|
||||||
}
|
}
|
||||||
@ -2411,23 +2411,23 @@ void user_options_info (hashcat_ctx_t *hashcat_ctx)
|
|||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "# option: --kernel-accel=%u", user_options->kernel_accel);
|
event_log_info (hashcat_ctx, "# option: --kernel-accel=%u", user_options->kernel_accel);
|
||||||
}
|
}
|
||||||
else if (user_options->kernel_loops_chgd == true)
|
|
||||||
|
if (user_options->kernel_loops_chgd == true)
|
||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "# option: --kernel-loops=%u", user_options->kernel_loops);
|
event_log_info (hashcat_ctx, "# option: --kernel-loops=%u", user_options->kernel_loops);
|
||||||
}
|
}
|
||||||
else if (user_options->kernel_threads_chgd == true)
|
|
||||||
|
if (user_options->kernel_threads_chgd == true)
|
||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "# option: --kernel-threads=%u", user_options->kernel_threads);
|
event_log_info (hashcat_ctx, "# option: --kernel-threads=%u", user_options->kernel_threads);
|
||||||
}
|
}
|
||||||
else
|
|
||||||
{
|
|
||||||
if (user_options->workload_profile_chgd == true)
|
if (user_options->workload_profile_chgd == true)
|
||||||
{
|
{
|
||||||
event_log_info (hashcat_ctx, "# option: --workload-profile=%u", user_options->workload_profile);
|
event_log_info (hashcat_ctx, "# option: --workload-profile=%u", user_options->workload_profile);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
|
||||||
|
|
||||||
void user_options_extra_init (hashcat_ctx_t *hashcat_ctx)
|
void user_options_extra_init (hashcat_ctx_t *hashcat_ctx)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user