mirror of
https://github.com/hashcat/hashcat.git
synced 2025-05-18 23:08:49 +00:00
Fixed invalid support for SIMD in -m 400
This commit is contained in:
parent
c99de3c22a
commit
2f30e5e929
@ -29,6 +29,7 @@
|
|||||||
- Fixed a mask-length check issue: Return -1 in case the mask-length is not within the password-length range
|
- Fixed a mask-length check issue: Return -1 in case the mask-length is not within the password-length range
|
||||||
- Fixed a restore issue leading to "Restore value is greater than keyspace" when mask-files or wordlist-folders were used
|
- Fixed a restore issue leading to "Restore value is greater than keyspace" when mask-files or wordlist-folders were used
|
||||||
- Fixed a uninitialized value in OpenCL kernels 9720, 9820 and 10420 leading to absurd benchmark performance
|
- Fixed a uninitialized value in OpenCL kernels 9720, 9820 and 10420 leading to absurd benchmark performance
|
||||||
|
- Fixed invalid support for SIMD in -m 400
|
||||||
- Fixed the maximum password length check in password-reassembling function
|
- Fixed the maximum password length check in password-reassembling function
|
||||||
- Fixed the output of --show if $HEX[] passwords were present within the potfile
|
- Fixed the output of --show if $HEX[] passwords were present within the potfile
|
||||||
|
|
||||||
|
@ -21603,8 +21603,7 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
|
|||||||
hashconfig->kern_type = KERN_TYPE_PHPASS;
|
hashconfig->kern_type = KERN_TYPE_PHPASS;
|
||||||
hashconfig->dgst_size = DGST_SIZE_4_4;
|
hashconfig->dgst_size = DGST_SIZE_4_4;
|
||||||
hashconfig->parse_func = phpass_parse_hash;
|
hashconfig->parse_func = phpass_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_pos0 = 0;
|
||||||
hashconfig->dgst_pos1 = 1;
|
hashconfig->dgst_pos1 = 1;
|
||||||
hashconfig->dgst_pos2 = 2;
|
hashconfig->dgst_pos2 = 2;
|
||||||
@ -25487,7 +25486,8 @@ int hashconfig_init (hashcat_ctx_t *hashcat_ctx)
|
|||||||
hashconfig->kern_type = KERN_TYPE_APPLE_SECURE_NOTES;
|
hashconfig->kern_type = KERN_TYPE_APPLE_SECURE_NOTES;
|
||||||
hashconfig->dgst_size = DGST_SIZE_4_4; // originally DGST_SIZE_4_2
|
hashconfig->dgst_size = DGST_SIZE_4_4; // originally DGST_SIZE_4_2
|
||||||
hashconfig->parse_func = apple_secure_notes_parse_hash;
|
hashconfig->parse_func = apple_secure_notes_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_pos0 = 0;
|
||||||
hashconfig->dgst_pos1 = 1;
|
hashconfig->dgst_pos1 = 1;
|
||||||
hashconfig->dgst_pos2 = 2;
|
hashconfig->dgst_pos2 = 2;
|
||||||
|
Loading…
Reference in New Issue
Block a user