1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-07-15 19:18:23 +00:00

No longer require -i with --increment-inverse

This commit is contained in:
PenguinKeeper7 2024-03-04 23:05:54 +00:00
parent 18a35bdffd
commit 0fb6e68c76

View File

@ -868,13 +868,6 @@ int user_options_sanity (hashcat_ctx_t *hashcat_ctx)
return -1;
}
if ((user_options->increment == false) && (user_options->increment_inverse == true))
{
event_log_error (hashcat_ctx, "Increment-inverse is only supported combined with -i/--increment.");
return -1;
}
if (user_options->increment_min > user_options->increment_max)
{
event_log_error (hashcat_ctx, "Invalid --increment-min value specified - must be >= --increment-max.");