2021-02-04 00:10:32 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
//#define NEW_SIMD_CODE
|
|
|
|
|
|
|
|
#ifdef KERNEL_STATIC
|
|
|
|
#include "inc_vendor.h"
|
|
|
|
#include "inc_types.h"
|
|
|
|
#include "inc_platform.cl"
|
|
|
|
#include "inc_common.cl"
|
|
|
|
#include "inc_rp.h"
|
|
|
|
#include "inc_rp.cl"
|
|
|
|
#include "inc_scalar.cl"
|
|
|
|
#include "inc_hash_md5.cl"
|
|
|
|
#endif
|
|
|
|
|
2021-04-01 09:14:18 +00:00
|
|
|
KERNEL_FQ void m24700_mxx (KERN_ATTR_RULES ())
|
2021-02-04 00:10:32 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
|
|
|
|
|
|
|
COPY_PW (pws[gid]);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
|
|
|
{
|
|
|
|
pw_t tmp = PASTE_PW;
|
|
|
|
|
|
|
|
tmp.pw_len = apply_rules (rules_buf[il_pos].cmds, tmp.i, tmp.pw_len);
|
|
|
|
|
|
|
|
md5_ctx_t ctx0;
|
|
|
|
|
|
|
|
md5_init (&ctx0);
|
|
|
|
|
|
|
|
md5_update (&ctx0, tmp.i, tmp.pw_len);
|
|
|
|
|
|
|
|
md5_final (&ctx0);
|
|
|
|
|
|
|
|
const u32 a = ctx0.h[0];
|
2021-04-01 09:14:18 +00:00
|
|
|
const u32 b = ctx0.h[1] & 0xff;
|
2021-02-04 00:10:32 +00:00
|
|
|
|
|
|
|
md5_ctx_t ctx;
|
|
|
|
|
|
|
|
md5_init (&ctx);
|
|
|
|
|
2021-04-01 09:14:18 +00:00
|
|
|
ctx.w0[0] = a;
|
|
|
|
ctx.w0[1] = b;
|
2021-02-04 00:10:32 +00:00
|
|
|
|
2021-04-01 09:14:18 +00:00
|
|
|
ctx.len = 5;
|
2021-02-04 00:10:32 +00:00
|
|
|
|
|
|
|
md5_final (&ctx);
|
|
|
|
|
|
|
|
const u32 r0 = ctx.h[DGST_R0];
|
2021-04-01 09:14:18 +00:00
|
|
|
const u32 r1 = ctx.h[DGST_R1] & 0xff;
|
2021-02-04 00:10:32 +00:00
|
|
|
const u32 r2 = 0;
|
|
|
|
const u32 r3 = 0;
|
|
|
|
|
|
|
|
COMPARE_M_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-04-01 09:14:18 +00:00
|
|
|
KERNEL_FQ void m24700_sxx (KERN_ATTR_RULES ())
|
2021-02-04 00:10:32 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* digest
|
|
|
|
*/
|
|
|
|
|
|
|
|
const u32 search[4] =
|
|
|
|
{
|
|
|
|
digests_buf[DIGESTS_OFFSET].digest_buf[DGST_R0],
|
|
|
|
digests_buf[DIGESTS_OFFSET].digest_buf[DGST_R1],
|
|
|
|
0,
|
|
|
|
0
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
|
|
|
|
|
|
|
COPY_PW (pws[gid]);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
|
|
|
{
|
|
|
|
pw_t tmp = PASTE_PW;
|
|
|
|
|
|
|
|
tmp.pw_len = apply_rules (rules_buf[il_pos].cmds, tmp.i, tmp.pw_len);
|
|
|
|
|
|
|
|
md5_ctx_t ctx0;
|
|
|
|
|
|
|
|
md5_init (&ctx0);
|
|
|
|
|
|
|
|
md5_update (&ctx0, tmp.i, tmp.pw_len);
|
|
|
|
|
|
|
|
md5_final (&ctx0);
|
|
|
|
|
|
|
|
const u32 a = ctx0.h[0];
|
2021-04-01 09:14:18 +00:00
|
|
|
const u32 b = ctx0.h[1] & 0xff;
|
2021-02-04 00:10:32 +00:00
|
|
|
|
|
|
|
md5_ctx_t ctx;
|
|
|
|
|
|
|
|
md5_init (&ctx);
|
|
|
|
|
2021-04-01 09:14:18 +00:00
|
|
|
ctx.w0[0] = a;
|
|
|
|
ctx.w0[1] = b;
|
2021-02-04 00:10:32 +00:00
|
|
|
|
2021-04-01 09:14:18 +00:00
|
|
|
ctx.len = 5;
|
2021-02-04 00:10:32 +00:00
|
|
|
|
|
|
|
md5_final (&ctx);
|
|
|
|
|
|
|
|
const u32 r0 = ctx.h[DGST_R0];
|
2021-04-01 09:14:18 +00:00
|
|
|
const u32 r1 = ctx.h[DGST_R1] & 0xff;
|
2021-02-04 00:10:32 +00:00
|
|
|
const u32 r2 = 0;
|
|
|
|
const u32 r3 = 0;
|
|
|
|
|
|
|
|
COMPARE_S_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
|
|
|
}
|