Vectorized Password Safe v3 and added support for long passwords

pull/1291/head
jsteube 7 years ago
parent 0fae961111
commit 27a57383f0

File diff suppressed because it is too large Load Diff

@ -23208,7 +23208,8 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
hashconfig->kern_type = KERN_TYPE_BITCOIN_WALLET;
hashconfig->dgst_size = DGST_SIZE_4_4;
hashconfig->parse_func = bitcoin_wallet_parse_hash;
hashconfig->opti_type = OPTI_TYPE_ZERO_BYTE;
hashconfig->opti_type = OPTI_TYPE_ZERO_BYTE
| OPTI_TYPE_SLOW_HASH_SIMD_LOOP;
hashconfig->dgst_pos0 = 0;
hashconfig->dgst_pos1 = 1;
hashconfig->dgst_pos2 = 2;
@ -24658,6 +24659,8 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
break;
case 10300: hashconfig->pw_max = PW_MAX;
break;
case 11300: hashconfig->pw_max = PW_MAX;
break;
}
// pw_max : algo specific hard max length

Loading…
Cancel
Save