Home
last modified time | relevance | path

Searched refs:hook_extra_params (Results 1 – 4 of 4) sorted by relevance

/dports/security/hashcat/hashcat-6.2.5/src/
H A Dinterface.c464 module_ctx->hook_extra_params = (void *) hccalloc (hook_threads, sizeof (void *)); in hashconfig_init()
468 module_ctx->hook_extra_params[i] = (void *) hcmalloc (hashconfig->hook_extra_param_size); in hashconfig_init()
473 module_ctx->hook_extra_params = (void *) hccalloc (1, sizeof (void *)); in hashconfig_init()
475 module_ctx->hook_extra_params[0] = (void *) hcmalloc (1); in hashconfig_init()
484 …g, user_options, user_options_extra, folder_config, backend_ctx, module_ctx->hook_extra_params[i]); in hashconfig_init()
509 …g, user_options, user_options_extra, folder_config, backend_ctx, module_ctx->hook_extra_params[i]); in hashconfig_destroy()
513 if (module_ctx->hook_extra_params) in hashconfig_destroy()
521 hcfree (module_ctx->hook_extra_params[i]); in hashconfig_destroy()
526 hcfree (module_ctx->hook_extra_params[0]); in hashconfig_destroy()
529 hcfree (module_ctx->hook_extra_params); in hashconfig_destroy()
H A Dselftest.c522 …module_ctx->module_hook12 (device_param, module_ctx->hook_extra_params[0], hashes->st_hook_salts_b… in selftest()
600 …module_ctx->module_hook23 (device_param, module_ctx->hook_extra_params[0], hashes->st_hook_salts_b… in selftest()
H A Dbackend.c4533 hook_thread_param->hook_extra_param = module_ctx->hook_extra_params[i]; in choose_kernel()
4679 hook_thread_param->hook_extra_param = module_ctx->hook_extra_params[i]; in choose_kernel()
/dports/security/hashcat/hashcat-6.2.5/include/
H A Dtypes.h2653 void **hook_extra_params; // free for module to use (for instance: library handles) member