1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 03:08:58 +00:00
hashcat/OpenCL/m25700_a0-optimized.cl

195 lines
3.3 KiB
Common Lisp
Raw Normal View History

2021-05-18 08:58:13 +00:00
/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
//#define NEW_SIMD_CODE
#ifdef KERNEL_STATIC
#include M2S(INCLUDE_PATH/inc_vendor.h)
#include M2S(INCLUDE_PATH/inc_types.h)
#include M2S(INCLUDE_PATH/inc_platform.cl)
#include M2S(INCLUDE_PATH/inc_common.cl)
#include M2S(INCLUDE_PATH/inc_rp_optimized.h)
#include M2S(INCLUDE_PATH/inc_rp_optimized.cl)
#include M2S(INCLUDE_PATH/inc_simd.cl)
2021-05-18 08:58:13 +00:00
#endif
2022-07-02 09:53:53 +00:00
DECLSPEC u32 MurmurHash (const u32 seed, PRIVATE_AS const u32 *w, const u32 pw_len)
2021-05-18 08:58:13 +00:00
{
u32 hash = seed;
#define M 0x7fd652ad
#define R 16
hash += 0xdeadbeef;
2022-07-02 09:53:53 +00:00
const u32 blocks = pw_len / 4;
2021-05-18 08:58:13 +00:00
2022-07-02 09:53:53 +00:00
if (pw_len >= 4)
2021-05-18 08:58:13 +00:00
{
2022-07-02 09:53:53 +00:00
for (u32 i = 0; i < blocks; i++)
{
const u32 tmp = (hash + w[i]) * M;
2021-05-18 08:58:13 +00:00
2022-07-02 09:53:53 +00:00
hash = tmp ^ (tmp >> R);
}
2021-05-18 08:58:13 +00:00
}
2022-07-02 09:53:53 +00:00
const u32 tmp = (hash + w[blocks]) * M;
2021-05-18 08:58:13 +00:00
2022-07-02 09:53:53 +00:00
hash = (pw_len & 3) ? (tmp ^ (tmp >> R)) : hash;
2021-05-18 08:58:13 +00:00
2021-06-21 15:47:22 +00:00
hash *= M;
2021-05-18 08:58:13 +00:00
hash ^= hash >> 10;
2021-06-21 15:47:22 +00:00
hash *= M;
2021-05-18 08:58:13 +00:00
hash ^= hash >> 17;
#undef M
#undef R
return hash;
}
KERNEL_FQ void m25700_m04 (KERN_ATTR_RULES ())
{
/**
* modifier
*/
const u64 lid = get_local_id (0);
/**
* base
*/
const u64 gid = get_global_id (0);
if (gid >= GID_CNT) return;
2021-05-18 08:58:13 +00:00
u32 pw_buf0[4];
u32 pw_buf1[4];
pw_buf0[0] = pws[gid].i[0];
pw_buf0[1] = pws[gid].i[1];
pw_buf0[2] = pws[gid].i[2];
pw_buf0[3] = pws[gid].i[3];
pw_buf1[0] = pws[gid].i[4];
pw_buf1[1] = pws[gid].i[5];
pw_buf1[2] = pws[gid].i[6];
pw_buf1[3] = pws[gid].i[7];
const u32 pw_len = pws[gid].pw_len & 63;
/**
* seed
*/
const u32 seed = salt_bufs[SALT_POS_HOST].salt_buf[0];
2021-05-18 08:58:13 +00:00
/**
* loop
*/
for (u32 il_pos = 0; il_pos < IL_CNT; il_pos += VECT_SIZE)
2021-05-18 08:58:13 +00:00
{
u32x w[16] = { 0 };
const u32x out_len = apply_rules_vect_optimized (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w + 0, w + 4);
u32x hash = MurmurHash (seed, w, out_len);
const u32x r0 = hash;
const u32x r1 = 0;
const u32x r2 = 0;
const u32x r3 = 0;
COMPARE_M_SIMD (r0, r1, r2, r3);
}
}
KERNEL_FQ void m25700_m08 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ void m25700_m16 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ void m25700_s04 (KERN_ATTR_RULES ())
{
/**
* modifier
*/
const u64 lid = get_local_id (0);
/**
* base
*/
const u64 gid = get_global_id (0);
if (gid >= GID_CNT) return;
2021-05-18 08:58:13 +00:00
u32 pw_buf0[4];
u32 pw_buf1[4];
pw_buf0[0] = pws[gid].i[0];
pw_buf0[1] = pws[gid].i[1];
pw_buf0[2] = pws[gid].i[2];
pw_buf0[3] = pws[gid].i[3];
pw_buf1[0] = pws[gid].i[4];
pw_buf1[1] = pws[gid].i[5];
pw_buf1[2] = pws[gid].i[6];
pw_buf1[3] = pws[gid].i[7];
const u32 pw_len = pws[gid].pw_len & 63;
/**
* digest
*/
const u32 search[4] =
{
digests_buf[DIGESTS_OFFSET_HOST].digest_buf[DGST_R0],
2021-05-18 08:58:13 +00:00
0,
0,
0
};
/**
* seed
*/
const u32 seed = salt_bufs[SALT_POS_HOST].salt_buf[0];
2021-05-18 08:58:13 +00:00
/**
* loop
*/
for (u32 il_pos = 0; il_pos < IL_CNT; il_pos += VECT_SIZE)
2021-05-18 08:58:13 +00:00
{
u32x w[16] = { 0 };
const u32x out_len = apply_rules_vect_optimized (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w + 0, w + 4);
u32x hash = MurmurHash (seed, w, out_len);
const u32x r0 = hash;
const u32x r1 = 0;
const u32x r2 = 0;
const u32x r3 = 0;
COMPARE_S_SIMD (r0, r1, r2, r3);
}
}
KERNEL_FQ void m25700_s08 (KERN_ATTR_RULES ())
{
}
KERNEL_FQ void m25700_s16 (KERN_ATTR_RULES ())
{
}