fixes 7-Zip parser limits for encrypted/decrypted data lengths

This commit is contained in:
philsmd
2019-02-15 18:49:16 +01:00
parent 158b93832c
commit 7b3ab9dbcb
2 changed files with 3 additions and 2 deletions
+2 -2
View File
@@ -341,13 +341,13 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
token.sep[8] = '$';
token.len_min[8] = 1;
token.len_max[8] = 4;
token.len_max[8] = 6;
token.attr[8] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;
token.sep[9] = '$';
token.len_min[9] = 1;
token.len_max[9] = 4;
token.len_max[9] = 6;
token.attr[9] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;