2017-08-09 12:48:47 +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"
|
2017-08-09 12:48:47 +00:00
|
|
|
#include "inc_common.cl"
|
|
|
|
#include "inc_scalar.cl"
|
|
|
|
#include "inc_hash_sha512.cl"
|
2019-03-22 14:16:25 +00:00
|
|
|
#endif
|
2017-08-09 12:48:47 +00:00
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
KERNEL_FQ void m15000_mxx (KERN_ATTR_BASIC ())
|
2017-08-09 12:48:47 +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-08-09 12:48:47 +00:00
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
|
|
|
|
|
|
|
const u32 salt_len = salt_bufs[salt_pos].salt_len;
|
|
|
|
|
|
|
|
u32 s[64] = { 0 };
|
|
|
|
|
2019-04-10 10:23:39 +00:00
|
|
|
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
2017-08-09 12:48:47 +00:00
|
|
|
{
|
2019-03-23 21:15:38 +00:00
|
|
|
s[idx] = hc_swap32_S (salt_bufs[salt_pos].salt_buf[idx]);
|
2017-08-09 12:48:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sha512_ctx_t ctx0;
|
|
|
|
|
|
|
|
sha512_init (&ctx0);
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
sha512_update_global_swap (&ctx0, pws[gid].i, pws[gid].pw_len);
|
2017-08-09 12:48:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
|
|
|
{
|
|
|
|
sha512_ctx_t ctx = ctx0;
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
sha512_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
2017-08-09 12:48:47 +00:00
|
|
|
|
|
|
|
sha512_update (&ctx, s, salt_len);
|
|
|
|
|
|
|
|
sha512_final (&ctx);
|
|
|
|
|
|
|
|
const u32 r0 = l32_from_64_S (ctx.h[7]);
|
|
|
|
const u32 r1 = h32_from_64_S (ctx.h[7]);
|
|
|
|
const u32 r2 = l32_from_64_S (ctx.h[3]);
|
|
|
|
const u32 r3 = h32_from_64_S (ctx.h[3]);
|
|
|
|
|
|
|
|
COMPARE_M_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
KERNEL_FQ void m15000_sxx (KERN_ATTR_BASIC ())
|
2017-08-09 12:48:47 +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-08-09 12:48:47 +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]
|
|
|
|
};
|
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
|
|
|
|
|
|
|
const u32 salt_len = salt_bufs[salt_pos].salt_len;
|
|
|
|
|
|
|
|
u32 s[64] = { 0 };
|
|
|
|
|
2019-04-10 10:23:39 +00:00
|
|
|
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
2017-08-09 12:48:47 +00:00
|
|
|
{
|
2019-03-23 21:15:38 +00:00
|
|
|
s[idx] = hc_swap32_S (salt_bufs[salt_pos].salt_buf[idx]);
|
2017-08-09 12:48:47 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
sha512_ctx_t ctx0;
|
|
|
|
|
|
|
|
sha512_init (&ctx0);
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
sha512_update_global_swap (&ctx0, pws[gid].i, pws[gid].pw_len);
|
2017-08-09 12:48:47 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
|
|
|
{
|
|
|
|
sha512_ctx_t ctx = ctx0;
|
|
|
|
|
2019-02-26 20:20:07 +00:00
|
|
|
sha512_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
|
2017-08-09 12:48:47 +00:00
|
|
|
|
|
|
|
sha512_update (&ctx, s, salt_len);
|
|
|
|
|
|
|
|
sha512_final (&ctx);
|
|
|
|
|
|
|
|
const u32 r0 = l32_from_64_S (ctx.h[7]);
|
|
|
|
const u32 r1 = h32_from_64_S (ctx.h[7]);
|
|
|
|
const u32 r2 = l32_from_64_S (ctx.h[3]);
|
|
|
|
const u32 r3 = h32_from_64_S (ctx.h[3]);
|
|
|
|
|
|
|
|
COMPARE_S_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
|
|
|
}
|