1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-10-09 09:33:06 +00:00
hashcat/OpenCL/inc_comp_multi_bs.cl
Jens Steube 2899f53a15 Move files from include/ to OpenCL/ if they are used within kernels
Rename includes in OpenCL so that it's easier to recognize them as such
2016-05-25 23:04:26 +02:00

33 lines
804 B
Common Lisp

u32 digest_tp[4];
digest_tp[0] = r0;
digest_tp[1] = r1;
digest_tp[2] = r2;
digest_tp[3] = r3;
if (check (digest_tp,
bitmaps_buf_s1_a,
bitmaps_buf_s1_b,
bitmaps_buf_s1_c,
bitmaps_buf_s1_d,
bitmaps_buf_s2_a,
bitmaps_buf_s2_b,
bitmaps_buf_s2_c,
bitmaps_buf_s2_d,
bitmap_mask,
bitmap_shift1,
bitmap_shift2))
{
int digest_pos = find_hash (digest_tp, digests_cnt, &digests_buf[digests_offset]);
if (digest_pos != -1)
{
const u32 final_hash_pos = digests_offset + digest_pos;
if (atomic_inc (&hashes_shown[final_hash_pos]) == 0)
{
mark_hash (plains_buf, d_return_buf, salt_pos, digest_pos, final_hash_pos, gid, il_pos + slice);
}
}
}