1
0
mirror of https://github.com/hashcat/hashcat.git synced 2025-08-03 12:28:07 +00:00

Fixed bug in 34000 with Metal and OpenCL on Apple

This commit is contained in:
Gabriele Gristina 2025-07-29 18:09:23 +02:00
parent def66c2098
commit d9dfc6da3a
No known key found for this signature in database
GPG Key ID: 9F68B59298F311F0
2 changed files with 5 additions and 0 deletions

View File

@ -83,9 +83,13 @@ KERNEL_FQ KERNEL_FA void m34000_loop (KERN_ATTR_TMPS_ESALT (argon2_tmp_t, argon2
argon2_options_t options = esalt_bufs[DIGESTS_OFFSET_HOST_BID]; argon2_options_t options = esalt_bufs[DIGESTS_OFFSET_HOST_BID];
#ifdef IS_APPLE
// it doesn't work on Apple, so we won't set it up
#else
#ifdef ARGON2_PARALLELISM #ifdef ARGON2_PARALLELISM
options.parallelism = ARGON2_PARALLELISM; options.parallelism = ARGON2_PARALLELISM;
#endif #endif
#endif
GLOBAL_AS argon2_block_t *argon2_block = get_argon2_block (&options, V, bd4); GLOBAL_AS argon2_block_t *argon2_block = get_argon2_block (&options, V, bd4);

View File

@ -137,6 +137,7 @@
- Fixed bug in 26900 module_hash_encode - Fixed bug in 26900 module_hash_encode
- Fixed bug in 29600 module OPTS_TYPE setting - Fixed bug in 29600 module OPTS_TYPE setting
- Fixed bug in 32600 by adding missing module_jit_build_options - Fixed bug in 32600 by adding missing module_jit_build_options
- Fixed bug in 34000 with Metal and OpenCL on Apple
- Fixed bug in Hardware Monitor: prevent disable if ADL fail - Fixed bug in Hardware Monitor: prevent disable if ADL fail
- Fixed bug in grep out-of-memory workaround on Unit Test - Fixed bug in grep out-of-memory workaround on Unit Test
- Fixed bug in inc_rp_optimized.cl on Apple Intel with Metal - Fixed bug in inc_rp_optimized.cl on Apple Intel with Metal