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-02-20 15:13:06 +00:00
|
|
|
|
2016-05-25 21:04:26 +00:00
|
|
|
#include "inc_vendor.cl"
|
2016-06-26 21:39:42 +00:00
|
|
|
#include "inc_hash_constants.h"
|
2016-05-25 21:04:26 +00:00
|
|
|
#include "inc_hash_functions.cl"
|
|
|
|
#include "inc_types.cl"
|
|
|
|
#include "inc_common.cl"
|
2017-06-29 10:19:05 +00:00
|
|
|
#include "inc_scalar.cl"
|
|
|
|
#include "inc_hash_md5.cl"
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2018-11-16 13:17:01 +00:00
|
|
|
__kernel void m00000_mxx (KERN_ATTR_BASIC ())
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
2017-08-19 14:39:22 +00:00
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
const u64 gid = get_global_id (0);
|
2017-07-18 11:23:42 +00:00
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_ctx_t ctx0;
|
2016-02-24 10:35:13 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_init (&ctx0);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2018-11-20 14:32:41 +00:00
|
|
|
md5_update_global (&ctx0, pws[gid].i, pws[gid].pw_len & 255);
|
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
|
|
|
md5_ctx_t ctx = ctx0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2018-11-20 14:34:43 +00:00
|
|
|
md5_update_global (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len & 255);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_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-02-21 17:40:01 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
COMPARE_M_SCALAR (r0, r1, r2, r3);
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-16 13:17:01 +00:00
|
|
|
__kernel void m00000_sxx (KERN_ATTR_BASIC ())
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
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
|
|
|
|
|
|
|
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],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R2],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R3]
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
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
|
|
|
md5_ctx_t ctx0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_init (&ctx0);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2018-11-20 14:32:41 +00:00
|
|
|
md5_update_global (&ctx0, pws[gid].i, pws[gid].pw_len & 255);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
|
|
|
{
|
|
|
|
md5_ctx_t ctx = ctx0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2018-11-20 14:34:43 +00:00
|
|
|
md5_update_global (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len & 255);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_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];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
COMPARE_S_SCALAR (r0, r1, r2, r3);
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|
|
|
|
}
|