mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-22 22:48:47 +00:00

Updated kernel declarations from "KERNEL_FQ void HC_ATTR_SEQ" to "KERNEL_FQ KERNEL_FA void". Please update your custom plugin kernels accordingly. Added spilling size as a factor in calculating usable memory per device. This is based on undocumented variables and may not be 100% accurate, but it works well in practice. Added a compiler hint to scrypt-based kernels indicating the guaranteed maximum thread count per kernel invocation. Removed redundant kernel code 29800, as it is identical to 27700, and updated the plugin.
234 lines
4.6 KiB
Common Lisp
234 lines
4.6 KiB
Common Lisp
/**
|
|
* 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.h)
|
|
#include M2S(INCLUDE_PATH/inc_rp.cl)
|
|
#include M2S(INCLUDE_PATH/inc_scalar.cl)
|
|
#include M2S(INCLUDE_PATH/inc_hash_whirlpool.cl)
|
|
#endif
|
|
|
|
KERNEL_FQ KERNEL_FA void m32600_mxx (KERN_ATTR_RULES ())
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
const u64 lid = get_local_id (0);
|
|
const u64 lsz = get_local_size (0);
|
|
|
|
/**
|
|
* Whirlpool shared
|
|
*/
|
|
|
|
#ifdef REAL_SHM
|
|
|
|
LOCAL_VK u64 s_MT0[256];
|
|
LOCAL_VK u64 s_MT1[256];
|
|
LOCAL_VK u64 s_MT2[256];
|
|
LOCAL_VK u64 s_MT3[256];
|
|
LOCAL_VK u64 s_MT4[256];
|
|
LOCAL_VK u64 s_MT5[256];
|
|
LOCAL_VK u64 s_MT6[256];
|
|
LOCAL_VK u64 s_MT7[256];
|
|
|
|
for (u32 i = lid; i < 256; i += lsz)
|
|
{
|
|
s_MT0[i] = MT0[i];
|
|
s_MT1[i] = MT1[i];
|
|
s_MT2[i] = MT2[i];
|
|
s_MT3[i] = MT3[i];
|
|
s_MT4[i] = MT4[i];
|
|
s_MT5[i] = MT5[i];
|
|
s_MT6[i] = MT6[i];
|
|
s_MT7[i] = MT7[i];
|
|
}
|
|
|
|
SYNC_THREADS ();
|
|
|
|
#else
|
|
|
|
CONSTANT_AS u64a *s_MT0 = MT0;
|
|
CONSTANT_AS u64a *s_MT1 = MT1;
|
|
CONSTANT_AS u64a *s_MT2 = MT2;
|
|
CONSTANT_AS u64a *s_MT3 = MT3;
|
|
CONSTANT_AS u64a *s_MT4 = MT4;
|
|
CONSTANT_AS u64a *s_MT5 = MT5;
|
|
CONSTANT_AS u64a *s_MT6 = MT6;
|
|
CONSTANT_AS u64a *s_MT7 = MT7;
|
|
|
|
#endif
|
|
|
|
if (gid >= GID_CNT) return;
|
|
|
|
const u32 salt_len = salt_bufs[SALT_POS_HOST].salt_len;
|
|
|
|
u32x s[64] = { 0 };
|
|
|
|
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
|
{
|
|
s[idx] = hc_swap32 (salt_bufs[SALT_POS_HOST].salt_buf[idx]);
|
|
}
|
|
|
|
whirlpool_ctx_t ctx0;
|
|
|
|
whirlpool_init (&ctx0, s_MT0, s_MT1, s_MT2, s_MT3, s_MT4, s_MT5, s_MT6, s_MT7);
|
|
|
|
whirlpool_update (&ctx0, s, salt_len);
|
|
|
|
/**
|
|
* 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);
|
|
|
|
whirlpool_ctx_t ctx = ctx0;
|
|
|
|
whirlpool_update_swap (&ctx, tmp.i, tmp.pw_len);
|
|
|
|
whirlpool_update (&ctx, s, salt_len);
|
|
|
|
whirlpool_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_M_SCALAR (r0, r1, r2, r3);
|
|
}
|
|
}
|
|
|
|
KERNEL_FQ KERNEL_FA void m32600_sxx (KERN_ATTR_RULES ())
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
const u64 lid = get_local_id (0);
|
|
const u64 lsz = get_local_size (0);
|
|
|
|
/**
|
|
* Whirlpool shared
|
|
*/
|
|
|
|
#ifdef REAL_SHM
|
|
|
|
LOCAL_VK u64 s_MT0[256];
|
|
LOCAL_VK u64 s_MT1[256];
|
|
LOCAL_VK u64 s_MT2[256];
|
|
LOCAL_VK u64 s_MT3[256];
|
|
LOCAL_VK u64 s_MT4[256];
|
|
LOCAL_VK u64 s_MT5[256];
|
|
LOCAL_VK u64 s_MT6[256];
|
|
LOCAL_VK u64 s_MT7[256];
|
|
|
|
for (u32 i = lid; i < 256; i += lsz)
|
|
{
|
|
s_MT0[i] = MT0[i];
|
|
s_MT1[i] = MT1[i];
|
|
s_MT2[i] = MT2[i];
|
|
s_MT3[i] = MT3[i];
|
|
s_MT4[i] = MT4[i];
|
|
s_MT5[i] = MT5[i];
|
|
s_MT6[i] = MT6[i];
|
|
s_MT7[i] = MT7[i];
|
|
}
|
|
|
|
SYNC_THREADS ();
|
|
|
|
#else
|
|
|
|
CONSTANT_AS u64a *s_MT0 = MT0;
|
|
CONSTANT_AS u64a *s_MT1 = MT1;
|
|
CONSTANT_AS u64a *s_MT2 = MT2;
|
|
CONSTANT_AS u64a *s_MT3 = MT3;
|
|
CONSTANT_AS u64a *s_MT4 = MT4;
|
|
CONSTANT_AS u64a *s_MT5 = MT5;
|
|
CONSTANT_AS u64a *s_MT6 = MT6;
|
|
CONSTANT_AS u64a *s_MT7 = MT7;
|
|
|
|
#endif
|
|
|
|
if (gid >= GID_CNT) return;
|
|
|
|
/**
|
|
* digest
|
|
*/
|
|
|
|
const u32 search[4] =
|
|
{
|
|
digests_buf[DIGESTS_OFFSET_HOST].digest_buf[DGST_R0],
|
|
digests_buf[DIGESTS_OFFSET_HOST].digest_buf[DGST_R1],
|
|
digests_buf[DIGESTS_OFFSET_HOST].digest_buf[DGST_R2],
|
|
digests_buf[DIGESTS_OFFSET_HOST].digest_buf[DGST_R3]
|
|
};
|
|
|
|
const u32 salt_len = salt_bufs[SALT_POS_HOST].salt_len;
|
|
|
|
u32x s[64] = { 0 };
|
|
|
|
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
|
{
|
|
s[idx] = hc_swap32 (salt_bufs[SALT_POS_HOST].salt_buf[idx]);
|
|
}
|
|
|
|
whirlpool_ctx_t ctx0;
|
|
|
|
whirlpool_init (&ctx0, s_MT0, s_MT1, s_MT2, s_MT3, s_MT4, s_MT5, s_MT6, s_MT7);
|
|
|
|
whirlpool_update (&ctx0, s, salt_len);
|
|
|
|
/**
|
|
* 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);
|
|
|
|
whirlpool_ctx_t ctx = ctx0;
|
|
|
|
whirlpool_update_swap (&ctx, tmp.i, tmp.pw_len);
|
|
|
|
whirlpool_update (&ctx, s, salt_len);
|
|
|
|
whirlpool_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);
|
|
}
|
|
}
|