1
mirror of https://github.com/hashcat/hashcat synced 2025-01-17 23:17:27 +01:00
hashcat/OpenCL/amp_a0.cl
2019-03-22 15:44:21 +01:00

28 lines
740 B
Common Lisp

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#ifdef KERNEL_STATIC
#include "inc_vendor.h"
#include "inc_types.h"
#include "inc_common.cl"
#include "inc_rp.h"
#include "inc_rp.cl"
#endif
__kernel void amp (__global pw_t * restrict pws, __global pw_t * restrict pws_amp, __constant const kernel_rule_t * restrict rules_buf, __global const pw_t * restrict combs_buf, __global const bf_t * restrict bfs_buf, const u32 combs_mode, const u64 gid_max)
{
const u64 gid = get_global_id (0);
if (gid >= gid_max) return;
if (rules_buf[0].cmds[0] == RULE_OP_MANGLE_NOOP && rules_buf[0].cmds[1] == 0) return;
pw_t pw = pws_amp[gid];
pw.pw_len = apply_rules (rules_buf[0].cmds, pw.i, pw.pw_len);
pws[gid] = pw;
}