1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-22 16:18:09 +00:00

Fix missing pwlen copy in amp_a0

This commit is contained in:
jsteube 2016-09-16 23:56:05 +02:00
parent 0eff6b7cab
commit f273d4771b

View File

@ -37,6 +37,8 @@ __kernel void amp (__global pw_t *pws, __global pw_t *pws_amp, __global kernel_r
pws_amp[gid].i[14] = pws[gid].i[14];
pws_amp[gid].i[15] = pws[gid].i[15];
pws_amp[gid].pw_len = pws[gid].pw_len;
return;
}