mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 04:58:57 +00:00
211 lines
5.7 KiB
Common Lisp
211 lines
5.7 KiB
Common Lisp
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#define NEW_SIMD_CODE
|
|
|
|
#include "inc_vendor.h"
|
|
#include "inc_types.h"
|
|
#include "inc_common.cl"
|
|
#include "inc_simd.cl"
|
|
#include "inc_hash_sha1.cl"
|
|
|
|
typedef struct pstoken
|
|
{
|
|
u32 salt_buf[128];
|
|
u32 salt_len;
|
|
|
|
u32 pc_digest[5];
|
|
u32 pc_offset;
|
|
|
|
} pstoken_t;
|
|
|
|
__kernel void m13500_mxx (KERN_ATTR_VECTOR_ESALT (pstoken_t))
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 lid = get_local_id (0);
|
|
const u64 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;
|
|
|
|
u32x w[64] = { 0 };
|
|
|
|
for (int i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
|
{
|
|
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 (KERN_ATTR_VECTOR_ESALT (pstoken_t))
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 lid = get_local_id (0);
|
|
const u64 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;
|
|
|
|
u32x w[64] = { 0 };
|
|
|
|
for (int i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
|
{
|
|
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);
|
|
}
|
|
}
|