mirror of
https://github.com/hashcat/hashcat.git
synced 2025-01-24 06:31:07 +00:00
removed check which aborted on empty passwords for mode 10700
This commit is contained in:
parent
d19882ff71
commit
69807fb2fe
@ -647,8 +647,6 @@ KERNEL_FQ void m10700_loop (KERN_ATTR_TMPS_ESALT (pdf17l8_tmp_t, pdf_t))
|
|||||||
|
|
||||||
const u32 pw_len = pws[gid].pw_len & 31;
|
const u32 pw_len = pws[gid].pw_len & 31;
|
||||||
|
|
||||||
if (pw_len == 0) return;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* digest
|
* digest
|
||||||
*/
|
*/
|
||||||
|
@ -1256,8 +1256,6 @@ KERNEL_FQ void m10700_loop (KERN_ATTR_TMPS_ESALT (pdf17l8_tmp_t, pdf_t))
|
|||||||
|
|
||||||
const u32 pw_len = pws[gid].pw_len;
|
const u32 pw_len = pws[gid].pw_len;
|
||||||
|
|
||||||
if (pw_len == 0) return;
|
|
||||||
|
|
||||||
u32 w[64] = { 0 };
|
u32 w[64] = { 0 };
|
||||||
|
|
||||||
for (u32 i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
for (u32 i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
||||||
|
Loading…
Reference in New Issue
Block a user