1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-05 14:59:37 +00:00

Fix minimum line length for token 3 in saph_sha1_parse_hash()

This commit is contained in:
Jens Steube 2018-07-21 14:09:52 +02:00
parent aa63ee000e
commit eb563f5a10

View File

@ -11091,7 +11091,7 @@ int saph_sha1_parse_hash (u8 *input_buf, u32 input_len, hash_t *hash_buf, MAYBE_
token.attr[1] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_DIGIT;
token.len_min[2] = 33;
token.len_min[2] = 32;
token.len_max[2] = 49;
token.attr[2] = TOKEN_ATTR_VERIFY_LENGTH
| TOKEN_ATTR_VERIFY_BASE64A;