mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-19 22:58:11 +00:00
15 lines
383 B
C
15 lines
383 B
C
if ((r0 == search[0])
|
|
&& (r1 == search[1])
|
|
&& (r2 == search[2])
|
|
&& (r3 == search[3]))
|
|
{
|
|
const u32 final_hash_pos = digests_offset + 0;
|
|
|
|
if ((atomic_add (&hashes_shown[final_hash_pos], 1) == 0) && (check_vector_accessible (il_pos, bf_loops, bfs_cnt, 0) == 1))
|
|
{
|
|
mark_hash_s0_warp (plains_buf, hashes_shown, final_hash_pos, gid, il_pos);
|
|
|
|
d_return_buf[lid] = 1;
|
|
}
|
|
}
|