1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-01-11 00:01:16 +00:00

Merge pull request #2033 from roycewilliams/master

minor tweaks to hash-count min/max language
This commit is contained in:
Jens Steube 2019-05-19 15:02:19 +02:00 committed by GitHub
commit 79f60f09ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -573,14 +573,14 @@ static int outer_loop (hashcat_ctx_t *hashcat_ctx)
if (hashes->digests_cnt < hashconfig->hashes_count_min)
{
event_log_error (hashcat_ctx, "Too less hashes loaded, minimum is %u for this hash-mode.", hashconfig->hashes_count_min);
event_log_error (hashcat_ctx, "Not enough hashes loaded - minimum is %u for this hash-mode.", hashconfig->hashes_count_min);
return -1;
}
if (hashes->digests_cnt > hashconfig->hashes_count_max)
{
event_log_error (hashcat_ctx, "Too many hashes loaded, maximum is %u for this hash-mode.", hashconfig->hashes_count_max);
event_log_error (hashcat_ctx, "Too many hashes loaded - maximum is %u for this hash-mode.", hashconfig->hashes_count_max);
return -1;
}