mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-22 16:18:09 +00:00
Fix BF pure kernels for NetNTLMv2
This commit is contained in:
parent
a9fed50ce0
commit
6946329b02
@ -88,7 +88,7 @@ __kernel void m05600_mxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
|
||||
md5_hmac_ctx_t ctx0;
|
||||
|
||||
md5_hmac_init (&ctx0, w, pw_len);
|
||||
md5_hmac_init_64 (&ctx0, w0, w1, w2, w3);
|
||||
|
||||
md5_hmac_update_global (&ctx0, netntlm_bufs[digests_offset].userdomain_buf, netntlm_bufs[digests_offset].user_len + netntlm_bufs[digests_offset].domain_len);
|
||||
|
||||
@ -214,7 +214,7 @@ __kernel void m05600_sxx (__global pw_t *pws, __global const kernel_rule_t *rule
|
||||
|
||||
md5_hmac_ctx_t ctx0;
|
||||
|
||||
md5_hmac_init (&ctx0, w, pw_len);
|
||||
md5_hmac_init_64 (&ctx0, w0, w1, w2, w3);
|
||||
|
||||
md5_hmac_update_global (&ctx0, netntlm_bufs[digests_offset].userdomain_buf, netntlm_bufs[digests_offset].user_len + netntlm_bufs[digests_offset].domain_len);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user