mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-21 23:58:07 +00:00
Merge pull request #3573 from s3inlc/pdf_2.2
There can be PDF 104xx hashes which have V == 2
This commit is contained in:
commit
82a2e33cd2
@ -218,7 +218,7 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
const int R = strtol ((const char *) R_pos, NULL, 10);
|
||||
const int P = strtol ((const char *) P_pos, NULL, 10);
|
||||
|
||||
if (V != 1) return (PARSER_SALT_VALUE);
|
||||
if (V != 1 && V != 2) return (PARSER_SALT_VALUE);
|
||||
if (R != 2) return (PARSER_SALT_VALUE);
|
||||
|
||||
const int enc_md = strtol ((const char *) enc_md_pos, NULL, 10);
|
||||
|
@ -239,7 +239,7 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
const int R = strtol ((const char *) R_pos, NULL, 10);
|
||||
const int P = strtol ((const char *) P_pos, NULL, 10);
|
||||
|
||||
if (V != 1) return (PARSER_SALT_VALUE);
|
||||
if (V != 1 && V != 2) return (PARSER_SALT_VALUE);
|
||||
if (R != 2) return (PARSER_SALT_VALUE);
|
||||
|
||||
const int enc_md = strtol ((const char *) enc_md_pos, NULL, 10);
|
||||
|
@ -226,7 +226,7 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
|
||||
const int R = strtol ((const char *) R_pos, NULL, 10);
|
||||
const int P = strtol ((const char *) P_pos, NULL, 10);
|
||||
|
||||
if (V != 1) return (PARSER_SALT_VALUE);
|
||||
if (V != 1 && V != 2) return (PARSER_SALT_VALUE);
|
||||
if (R != 2) return (PARSER_SALT_VALUE);
|
||||
|
||||
const int enc_md = strtol ((const char *) enc_md_pos, NULL, 10);
|
||||
|
Loading…
Reference in New Issue
Block a user