mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-05 14:59:37 +00:00
207 lines
7.7 KiB
Common Lisp
207 lines
7.7 KiB
Common Lisp
|
/**
|
||
|
* Author......: See docs/credits.txt
|
||
|
* License.....: MIT
|
||
|
*/
|
||
|
|
||
|
#define NEW_SIMD_CODE
|
||
|
|
||
|
#include "inc_vendor.cl"
|
||
|
#include "inc_hash_constants.h"
|
||
|
#include "inc_hash_functions.cl"
|
||
|
#include "inc_types.cl"
|
||
|
#include "inc_common.cl"
|
||
|
#include "inc_simd.cl"
|
||
|
#include "inc_hash_sha1.cl"
|
||
|
|
||
|
__kernel void m13500_mxx (__global pw_t *pws, __global const kernel_rule_t *rules_buf, __global const pw_t *combs_buf, __constant const u32x *words_buf_r, __global void *tmps, __global void *hooks, __global const u32 *bitmaps_buf_s1_a, __global const u32 *bitmaps_buf_s1_b, __global const u32 *bitmaps_buf_s1_c, __global const u32 *bitmaps_buf_s1_d, __global const u32 *bitmaps_buf_s2_a, __global const u32 *bitmaps_buf_s2_b, __global const u32 *bitmaps_buf_s2_c, __global const u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global const digest_t *digests_buf, __global u32 *hashes_shown, __global const salt_t *salt_bufs, __global const pstoken_t *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
|
||
|
{
|
||
|
/**
|
||
|
* modifier
|
||
|
*/
|
||
|
|
||
|
const u32 lid = get_local_id (0);
|
||
|
const u32 gid = get_global_id (0);
|
||
|
|
||
|
if (gid >= gid_max) return;
|
||
|
|
||
|
/**
|
||
|
* salt
|
||
|
*/
|
||
|
|
||
|
const u32 pc_offset = esalt_bufs[digests_offset].pc_offset;
|
||
|
|
||
|
sha1_ctx_t ctx0;
|
||
|
|
||
|
ctx0.h[0] = esalt_bufs[digests_offset].pc_digest[0];
|
||
|
ctx0.h[1] = esalt_bufs[digests_offset].pc_digest[1];
|
||
|
ctx0.h[2] = esalt_bufs[digests_offset].pc_digest[2];
|
||
|
ctx0.h[3] = esalt_bufs[digests_offset].pc_digest[3];
|
||
|
ctx0.h[4] = esalt_bufs[digests_offset].pc_digest[4];
|
||
|
|
||
|
ctx0.w0[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 0]);
|
||
|
ctx0.w0[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 1]);
|
||
|
ctx0.w0[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 2]);
|
||
|
ctx0.w0[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 3]);
|
||
|
ctx0.w1[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 4]);
|
||
|
ctx0.w1[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 5]);
|
||
|
ctx0.w1[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 6]);
|
||
|
ctx0.w1[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 7]);
|
||
|
ctx0.w2[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 8]);
|
||
|
ctx0.w2[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 9]);
|
||
|
ctx0.w2[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 10]);
|
||
|
ctx0.w2[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 11]);
|
||
|
ctx0.w3[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 12]);
|
||
|
ctx0.w3[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 13]);
|
||
|
ctx0.w3[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 14]);
|
||
|
ctx0.w3[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 15]);
|
||
|
|
||
|
ctx0.len = esalt_bufs[digests_offset].salt_len;
|
||
|
|
||
|
/**
|
||
|
* base
|
||
|
*/
|
||
|
|
||
|
const u32 pw_len = pws[gid].pw_len;
|
||
|
|
||
|
const u32 pw_lenv = ceil ((float) pw_len / 4);
|
||
|
|
||
|
u32x w[64] = { 0 };
|
||
|
|
||
|
for (int idx = 0; idx < pw_lenv; idx++)
|
||
|
{
|
||
|
w[idx] = pws[gid].i[idx];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* loop
|
||
|
*/
|
||
|
|
||
|
u32x w0l = w[0];
|
||
|
|
||
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
|
||
|
{
|
||
|
const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
|
||
|
|
||
|
const u32x w0 = w0l | w0r;
|
||
|
|
||
|
w[0] = w0;
|
||
|
|
||
|
sha1_ctx_vector_t ctx;
|
||
|
|
||
|
sha1_init_vector_from_scalar (&ctx, &ctx0);
|
||
|
|
||
|
sha1_update_vector_utf16beN (&ctx, w, pw_len);
|
||
|
|
||
|
sha1_final_vector (&ctx);
|
||
|
|
||
|
const u32x r0 = ctx.h[DGST_R0];
|
||
|
const u32x r1 = ctx.h[DGST_R1];
|
||
|
const u32x r2 = ctx.h[DGST_R2];
|
||
|
const u32x r3 = ctx.h[DGST_R3];
|
||
|
|
||
|
COMPARE_M_SIMD (r0, r1, r2, r3);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
__kernel void m13500_sxx (__global pw_t *pws, __global const kernel_rule_t *rules_buf, __global const pw_t *combs_buf, __constant const u32x *words_buf_r, __global void *tmps, __global void *hooks, __global const u32 *bitmaps_buf_s1_a, __global const u32 *bitmaps_buf_s1_b, __global const u32 *bitmaps_buf_s1_c, __global const u32 *bitmaps_buf_s1_d, __global const u32 *bitmaps_buf_s2_a, __global const u32 *bitmaps_buf_s2_b, __global const u32 *bitmaps_buf_s2_c, __global const u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global const digest_t *digests_buf, __global u32 *hashes_shown, __global const salt_t *salt_bufs, __global const pstoken_t *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
|
||
|
{
|
||
|
/**
|
||
|
* modifier
|
||
|
*/
|
||
|
|
||
|
const u32 lid = get_local_id (0);
|
||
|
const u32 gid = get_global_id (0);
|
||
|
|
||
|
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]
|
||
|
};
|
||
|
|
||
|
/**
|
||
|
* salt
|
||
|
*/
|
||
|
|
||
|
const u32 pc_offset = esalt_bufs[digests_offset].pc_offset;
|
||
|
|
||
|
sha1_ctx_t ctx0;
|
||
|
|
||
|
ctx0.h[0] = esalt_bufs[digests_offset].pc_digest[0];
|
||
|
ctx0.h[1] = esalt_bufs[digests_offset].pc_digest[1];
|
||
|
ctx0.h[2] = esalt_bufs[digests_offset].pc_digest[2];
|
||
|
ctx0.h[3] = esalt_bufs[digests_offset].pc_digest[3];
|
||
|
ctx0.h[4] = esalt_bufs[digests_offset].pc_digest[4];
|
||
|
|
||
|
ctx0.w0[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 0]);
|
||
|
ctx0.w0[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 1]);
|
||
|
ctx0.w0[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 2]);
|
||
|
ctx0.w0[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 3]);
|
||
|
ctx0.w1[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 4]);
|
||
|
ctx0.w1[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 5]);
|
||
|
ctx0.w1[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 6]);
|
||
|
ctx0.w1[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 7]);
|
||
|
ctx0.w2[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 8]);
|
||
|
ctx0.w2[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 9]);
|
||
|
ctx0.w2[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 10]);
|
||
|
ctx0.w2[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 11]);
|
||
|
ctx0.w3[0] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 12]);
|
||
|
ctx0.w3[1] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 13]);
|
||
|
ctx0.w3[2] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 14]);
|
||
|
ctx0.w3[3] = swap32_S (esalt_bufs[digests_offset].salt_buf[pc_offset + 15]);
|
||
|
|
||
|
ctx0.len = esalt_bufs[digests_offset].salt_len;
|
||
|
|
||
|
/**
|
||
|
* base
|
||
|
*/
|
||
|
|
||
|
const u32 pw_len = pws[gid].pw_len;
|
||
|
|
||
|
const u32 pw_lenv = ceil ((float) pw_len / 4);
|
||
|
|
||
|
u32x w[64] = { 0 };
|
||
|
|
||
|
for (int idx = 0; idx < pw_lenv; idx++)
|
||
|
{
|
||
|
w[idx] = pws[gid].i[idx];
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* loop
|
||
|
*/
|
||
|
|
||
|
u32x w0l = w[0];
|
||
|
|
||
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
|
||
|
{
|
||
|
const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
|
||
|
|
||
|
const u32x w0 = w0l | w0r;
|
||
|
|
||
|
w[0] = w0;
|
||
|
|
||
|
sha1_ctx_vector_t ctx;
|
||
|
|
||
|
sha1_init_vector_from_scalar (&ctx, &ctx0);
|
||
|
|
||
|
sha1_update_vector_utf16beN (&ctx, w, pw_len);
|
||
|
|
||
|
sha1_final_vector (&ctx);
|
||
|
|
||
|
const u32x r0 = ctx.h[DGST_R0];
|
||
|
const u32x r1 = ctx.h[DGST_R1];
|
||
|
const u32x r2 = ctx.h[DGST_R2];
|
||
|
const u32x r3 = ctx.h[DGST_R3];
|
||
|
|
||
|
COMPARE_S_SIMD (r0, r1, r2, r3);
|
||
|
}
|
||
|
}
|