1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-27 02:18:21 +00:00

Allow user to override nonce_error_corrections regardless of information from message_pair

This commit is contained in:
Jens Steube 2021-11-30 13:05:53 +01:00
parent 964cff951f
commit 632b6db5f9
2 changed files with 24 additions and 24 deletions

View File

@ -1305,7 +1305,6 @@ int module_hash_decode_postprocess (MAYBE_UNUSED const hashconfig_t *hashconfig,
else
{
wpa->nonce_error_corrections = NONCE_ERROR_CORRECTIONS;
}
if (wpa->message_pair & (1 << 4))
{
@ -1324,6 +1323,7 @@ int module_hash_decode_postprocess (MAYBE_UNUSED const hashconfig_t *hashconfig,
wpa->nonce_error_corrections = 0;
}
}
}
return (PARSER_OK);
}

View File

@ -1305,7 +1305,6 @@ int module_hash_decode_postprocess (MAYBE_UNUSED const hashconfig_t *hashconfig,
else
{
wpa->nonce_error_corrections = NONCE_ERROR_CORRECTIONS;
}
if (wpa->message_pair & (1 << 4))
{
@ -1324,6 +1323,7 @@ int module_hash_decode_postprocess (MAYBE_UNUSED const hashconfig_t *hashconfig,
wpa->nonce_error_corrections = 0;
}
}
}
return (PARSER_OK);
}