mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-22 05:31:11 +00:00
Vectorized Password Safe v3 and added support for long passwords
This commit is contained in:
parent
0fae961111
commit
27a57383f0
1153
OpenCL/m11300.cl
1153
OpenCL/m11300.cl
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…
Reference in New Issue
Block a user