2019-02-21 12:52:01 +00:00
|
|
|
/**
|
|
|
|
* Author......: See docs/credits.txt
|
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
//#define NEW_SIMD_CODE
|
|
|
|
|
2019-03-22 14:16:25 +00:00
|
|
|
#ifdef KERNEL_STATIC
|
2019-03-21 22:00:38 +00:00
|
|
|
#include "inc_vendor.h"
|
|
|
|
#include "inc_types.h"
|
2019-04-26 11:59:43 +00:00
|
|
|
#include "inc_platform.cl"
|
2019-02-21 12:52:01 +00:00
|
|
|
#include "inc_common.cl"
|
|
|
|
#include "inc_rp.h"
|
|
|
|
#include "inc_rp.cl"
|
|
|
|
#include "inc_scalar.cl"
|
|
|
|
#include "inc_hash_md5.cl"
|
2019-03-22 14:16:25 +00:00
|
|
|
#endif
|
2019-02-21 12:52:01 +00:00
|
|
|
|
2019-04-13 16:46:19 +00:00
|
|
|
DECLSPEC u32 hashCode (const u32 init, const u32 *w, const u32 pw_len)
|
2019-02-22 11:33:16 +00:00
|
|
|
{
|
|
|
|
u32 hash = init;
|
|
|
|
|
|
|
|
for (u32 i = 0; i < pw_len; i += 4)
|
|
|
|
{
|
|
|
|
u32 tmp = w[i / 4];
|
|
|
|
|
|
|
|
const u32 left = pw_len - i;
|
|
|
|
|
|
|
|
const u32 c = (left > 4) ? 4 : left;
|
|
|
|
|
|
|
|
switch (c)
|
|
|
|
{
|
2019-02-24 07:02:13 +00:00
|
|
|
case 1:
|
|
|
|
hash *= 31; hash += (tmp >> 0) & 0xff;
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
hash *= 31; hash += (tmp >> 0) & 0xff;
|
|
|
|
hash *= 31; hash += (tmp >> 8) & 0xff;
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
hash *= 31; hash += (tmp >> 0) & 0xff;
|
|
|
|
hash *= 31; hash += (tmp >> 8) & 0xff;
|
|
|
|
hash *= 31; hash += (tmp >> 16) & 0xff;
|
|
|
|
break;
|
|
|
|
case 4:
|
|
|
|
hash *= 31; hash += (tmp >> 0) & 0xff;
|
|
|
|
hash *= 31; hash += (tmp >> 8) & 0xff;
|
|
|
|
hash *= 31; hash += (tmp >> 16) & 0xff;
|
|
|
|
hash *= 31; hash += (tmp >> 24) & 0xff;
|
|
|
|
break;
|
2019-02-22 11:33:16 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return hash;
|
|
|
|
}
|
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
KERNEL_FQ void m18700_mxx (KERN_ATTR_RULES ())
|
2019-02-21 12:52:01 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
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);
|
|
|
|
|
2019-02-22 11:33:16 +00:00
|
|
|
const u32 hash = hashCode (0, tmp.i, tmp.pw_len);
|
2019-02-21 12:52:01 +00:00
|
|
|
|
|
|
|
const u32 r0 = hash;
|
|
|
|
const u32 r1 = 0;
|
|
|
|
const u32 r2 = 0;
|
|
|
|
const u32 r3 = 0;
|
|
|
|
|
|
|
|
COMPARE_M_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
KERNEL_FQ void m18700_sxx (KERN_ATTR_RULES ())
|
2019-02-21 12:52:01 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
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],
|
|
|
|
0,
|
|
|
|
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);
|
|
|
|
|
2019-02-22 11:33:16 +00:00
|
|
|
const u32 hash = hashCode (0, tmp.i, tmp.pw_len);
|
2019-02-21 12:52:01 +00:00
|
|
|
|
|
|
|
const u32 r0 = hash;
|
|
|
|
const u32 r1 = 0;
|
|
|
|
const u32 r2 = 0;
|
|
|
|
const u32 r3 = 0;
|
|
|
|
|
|
|
|
COMPARE_S_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
|
|
|
}
|