Merge pull request #2216 from philsmd/patch-13

fixes #2214: -m 15200 = Blockchain allow large data similar to -m 12700 with hash copy
This commit is contained in:
Jens Steube
2019-11-08 12:33:08 +01:00
committed by GitHub

View File

@@ -93,13 +93,13 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
token.sep[2] = '$';
token.len_min[2] = 1;
token.len_max[2] = 5;
token.len_max[2] = 6;
token.attr[2] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;
token.sep[3] = '$';
token.len_min[3] = 64;
token.len_max[3] = 20000;
token.len_max[3] = 999999;
token.attr[3] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_HEX;