2015-12-04 14:47:52 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 14:47:52 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
//#define NEW_SIMD_CODE
|
2016-03-04 15:54:28 +00:00
|
|
|
|
2019-03-21 22:00:38 +00:00
|
|
|
#include "inc_vendor.h"
|
|
|
|
#include "inc_types.h"
|
2016-05-25 21:04:26 +00:00
|
|
|
#include "inc_common.cl"
|
2017-07-18 11:23:42 +00:00
|
|
|
#include "inc_scalar.cl"
|
|
|
|
#include "inc_hash_md4.cl"
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2018-11-16 13:17:01 +00:00
|
|
|
__kernel void m01100_mxx (KERN_ATTR_BASIC ())
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
/**
|
2017-07-18 11:23:42 +00:00
|
|
|
* modifier
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2017-08-19 14:39:22 +00:00
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
const u64 gid = get_global_id (0);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
if (gid >= gid_max) return;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
/**
|
2017-07-18 11:23:42 +00:00
|
|
|
* base
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32 salt_len = salt_bufs[salt_pos].salt_len;
|
|
|
|
|
2017-08-01 12:56:09 +00:00
|
|
|
u32 s[64] = { 0 };
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2017-08-17 11:43:35 +00:00
|
|
|
for (int i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
2016-05-28 13:36:04 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
s[idx] = salt_bufs[salt_pos].salt_buf[idx];
|
2016-05-28 13:36:04 +00:00
|
|
|
}
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_ctx_t ctx0;
|
2016-05-28 13:36:04 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_init (&ctx0);
|
2016-05-09 21:07:23 +00:00
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
md4_update_global_utf16le (&ctx0, pws[gid].i, pws[gid].pw_len);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_ctx_t ctx1 = ctx0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
md4_update_global_utf16le (&ctx1, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_final (&ctx1);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_ctx_t ctx;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_init (&ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
ctx.w0[0] = ctx1.h[0];
|
|
|
|
ctx.w0[1] = ctx1.h[1];
|
|
|
|
ctx.w0[2] = ctx1.h[2];
|
|
|
|
ctx.w0[3] = ctx1.h[3];
|
2016-02-22 20:32:38 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
ctx.len = 16;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_update_utf16le (&ctx, s, salt_len);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_final (&ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32 r0 = ctx.h[DGST_R0];
|
|
|
|
const u32 r1 = ctx.h[DGST_R1];
|
|
|
|
const u32 r2 = ctx.h[DGST_R2];
|
|
|
|
const u32 r3 = ctx.h[DGST_R3];
|
2016-05-28 13:36:04 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
COMPARE_M_SCALAR (r0, r1, r2, r3);
|
2016-05-28 13:36:04 +00:00
|
|
|
}
|
2017-07-18 11:23:42 +00:00
|
|
|
}
|
2016-05-28 13:36:04 +00:00
|
|
|
|
2018-11-16 13:17:01 +00:00
|
|
|
__kernel void m01100_sxx (KERN_ATTR_BASIC ())
|
2017-07-18 11:23:42 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
2016-05-28 13:36:04 +00:00
|
|
|
|
2017-08-19 14:39:22 +00:00
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
const u64 gid = get_global_id (0);
|
2016-05-09 21:07:23 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
if (gid >= gid_max) return;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
/**
|
2016-03-04 15:54:28 +00:00
|
|
|
* digest
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2016-03-04 15:54:28 +00:00
|
|
|
const u32 search[4] =
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2016-03-04 15:54:28 +00:00
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R0],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R1],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R2],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R3]
|
|
|
|
};
|
2016-02-22 20:32:38 +00:00
|
|
|
|
2016-03-04 15:54:28 +00:00
|
|
|
/**
|
2017-07-18 11:23:42 +00:00
|
|
|
* base
|
2016-03-04 15:54:28 +00:00
|
|
|
*/
|
2016-02-22 20:32:38 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32 salt_len = salt_bufs[salt_pos].salt_len;
|
|
|
|
|
2017-08-01 12:56:09 +00:00
|
|
|
u32 s[64] = { 0 };
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2017-08-17 11:43:35 +00:00
|
|
|
for (int i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
2016-03-04 15:54:28 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
s[idx] = salt_bufs[salt_pos].salt_buf[idx];
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_ctx_t ctx0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md4_init (&ctx0);
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
md4_update_global_utf16le (&ctx0, pws[gid].i, pws[gid].pw_len);
|
2017-07-18 11:23:42 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
|
|
|
{
|
|
|
|
md4_ctx_t ctx1 = ctx0;
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
md4_update_global_utf16le (&ctx1, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
2017-07-18 11:23:42 +00:00
|
|
|
|
|
|
|
md4_final (&ctx1);
|
|
|
|
|
|
|
|
md4_ctx_t ctx;
|
|
|
|
|
|
|
|
md4_init (&ctx);
|
|
|
|
|
|
|
|
ctx.w0[0] = ctx1.h[0];
|
|
|
|
ctx.w0[1] = ctx1.h[1];
|
|
|
|
ctx.w0[2] = ctx1.h[2];
|
|
|
|
ctx.w0[3] = ctx1.h[3];
|
|
|
|
|
|
|
|
ctx.len = 16;
|
|
|
|
|
|
|
|
md4_update_utf16le (&ctx, s, salt_len);
|
|
|
|
|
|
|
|
md4_final (&ctx);
|
|
|
|
|
|
|
|
const u32 r0 = ctx.h[DGST_R0];
|
|
|
|
const u32 r1 = ctx.h[DGST_R1];
|
|
|
|
const u32 r2 = ctx.h[DGST_R2];
|
|
|
|
const u32 r3 = ctx.h[DGST_R3];
|
|
|
|
|
|
|
|
COMPARE_S_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|