1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-05 06:58:56 +00:00

Merge branch 'hashcat:master' into fix_get_random_num

This commit is contained in:
Flagg 2023-05-20 23:04:18 -04:00 committed by GitHub
commit f75e7c18bc
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -273,6 +273,8 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
hc_token_t token2;
memset (&token2, 0, sizeof (hc_token_t));
token2.token_cnt = 3;
token2.signatures_cnt = 1;
@ -286,6 +288,7 @@ int module_hash_decode (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSE
token2.len[1] = 8;
token2.attr[1] = TOKEN_ATTR_FIXED_LENGTH;
token2.sep[2] = '$';
token2.len[2] = 22;
token2.attr[2] = TOKEN_ATTR_FIXED_LENGTH
| TOKEN_ATTR_VERIFY_BASE64B;