Added hash-mode 19300 sha1(..)

This commit is contained in:
jsteube
2019-02-28 20:00:52 +01:00
parent 5c3ad11424
commit 23917455ef
6 changed files with 819 additions and 0 deletions
+166
View File
@@ -0,0 +1,166 @@
/**
* 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_rp.h"
#include "inc_rp.cl"
#include "inc_scalar.cl"
#include "inc_hash_sha1.cl"
typedef struct sha1_double_salt
{
u32 salt1_buf[64];
int salt1_len;
u32 salt2_buf[64];
int salt2_len;
} sha1_double_salt_t;
__kernel void m19300_mxx (KERN_ATTR_RULES_ESALT (sha1_double_salt_t))
{
/**
* modifier
*/
const u64 lid = get_local_id (0);
const u64 gid = get_global_id (0);
if (gid >= gid_max) return;
/**
* base
*/
COPY_PW (pws[gid]);
const int salt1_len = esalt_bufs[digests_offset].salt1_len;
const int salt2_len = esalt_bufs[digests_offset].salt2_len;
u32 s1[64] = { 0 };
u32 s2[64] = { 0 };
for (int i = 0, idx = 0; i < salt1_len; i += 4, idx += 1)
{
s1[idx] = swap32_S (esalt_bufs[digests_offset].salt1_buf[idx]);
}
for (int i = 0, idx = 0; i < salt2_len; i += 4, idx += 1)
{
s2[idx] = swap32_S (esalt_bufs[digests_offset].salt2_buf[idx]);
}
/**
* 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);
sha1_ctx_t ctx;
sha1_init (&ctx);
sha1_update (&ctx, s1, salt1_len);
sha1_update_swap (&ctx, tmp.i, tmp.pw_len);
sha1_update (&ctx, s2, salt2_len);
sha1_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 void m19300_sxx (KERN_ATTR_RULES_ESALT (sha1_double_salt_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]
};
/**
* base
*/
COPY_PW (pws[gid]);
const int salt1_len = esalt_bufs[digests_offset].salt1_len;
const int salt2_len = esalt_bufs[digests_offset].salt2_len;
u32 s1[64] = { 0 };
u32 s2[64] = { 0 };
for (int i = 0, idx = 0; i < salt1_len; i += 4, idx += 1)
{
s1[idx] = swap32_S (esalt_bufs[digests_offset].salt1_buf[idx]);
}
for (int i = 0, idx = 0; i < salt2_len; i += 4, idx += 1)
{
s2[idx] = swap32_S (esalt_bufs[digests_offset].salt2_buf[idx]);
}
/**
* 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);
sha1_ctx_t ctx;
sha1_init (&ctx);
sha1_update (&ctx, s1, salt1_len);
sha1_update_swap (&ctx, tmp.i, tmp.pw_len);
sha1_update (&ctx, s2, salt2_len);
sha1_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);
}
}
+164
View File
@@ -0,0 +1,164 @@
/**
* 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_scalar.cl"
#include "inc_hash_sha1.cl"
typedef struct sha1_double_salt
{
u32 salt1_buf[64];
int salt1_len;
u32 salt2_buf[64];
int salt2_len;
} sha1_double_salt_t;
__kernel void m19300_mxx (KERN_ATTR_ESALT (sha1_double_salt_t))
{
/**
* modifier
*/
const u64 lid = get_local_id (0);
const u64 gid = get_global_id (0);
if (gid >= gid_max) return;
/**
* base
*/
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const int salt1_len = esalt_bufs[digests_offset].salt1_len;
const int salt2_len = esalt_bufs[digests_offset].salt2_len;
u32 s1[64] = { 0 };
u32 s2[64] = { 0 };
for (int i = 0, idx = 0; i < salt1_len; i += 4, idx += 1)
{
s1[idx] = swap32_S (esalt_bufs[digests_offset].salt1_buf[idx]);
}
for (int i = 0, idx = 0; i < salt2_len; i += 4, idx += 1)
{
s2[idx] = swap32_S (esalt_bufs[digests_offset].salt2_buf[idx]);
}
sha1_ctx_t ctx0;
sha1_init (&ctx0);
sha1_update (&ctx0, s1, salt1_len);
sha1_update_global_swap (&ctx0, pws[gid].i, pws[gid].pw_len);
/**
* loop
*/
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
{
sha1_ctx_t ctx = ctx0;
sha1_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
sha1_update (&ctx, s2, salt2_len);
sha1_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 void m19300_sxx (KERN_ATTR_ESALT (sha1_double_salt_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]
};
/**
* base
*/
const u32 salt_len = salt_bufs[salt_pos].salt_len;
const int salt1_len = esalt_bufs[digests_offset].salt1_len;
const int salt2_len = esalt_bufs[digests_offset].salt2_len;
u32 s1[64] = { 0 };
u32 s2[64] = { 0 };
for (int i = 0, idx = 0; i < salt1_len; i += 4, idx += 1)
{
s1[idx] = swap32_S (esalt_bufs[digests_offset].salt1_buf[idx]);
}
for (int i = 0, idx = 0; i < salt2_len; i += 4, idx += 1)
{
s2[idx] = swap32_S (esalt_bufs[digests_offset].salt2_buf[idx]);
}
sha1_ctx_t ctx0;
sha1_init (&ctx0);
sha1_update (&ctx0, s1, salt1_len);
sha1_update_global_swap (&ctx0, pws[gid].i, pws[gid].pw_len);
/**
* loop
*/
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
{
sha1_ctx_t ctx = ctx0;
sha1_update_global_swap (&ctx, combs_buf[il_pos].i, combs_buf[il_pos].pw_len);
sha1_update (&ctx, s2, salt2_len);
sha1_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);
}
}
+186
View File
@@ -0,0 +1,186 @@
/**
* 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"
typedef struct sha1_double_salt
{
u32 salt1_buf[64];
int salt1_len;
u32 salt2_buf[64];
int salt2_len;
} sha1_double_salt_t;
__kernel void m19300_mxx (KERN_ATTR_VECTOR_ESALT (sha1_double_salt_t))
{
/**
* modifier
*/
const u64 lid = get_local_id (0);
const u64 gid = get_global_id (0);
if (gid >= gid_max) return;
/**
* 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];
}
const int salt1_len = esalt_bufs[digests_offset].salt1_len;
const int salt2_len = esalt_bufs[digests_offset].salt2_len;
u32 s1[64] = { 0 };
u32 s2[64] = { 0 };
for (int i = 0, idx = 0; i < salt1_len; i += 4, idx += 1)
{
s1[idx] = swap32_S (esalt_bufs[digests_offset].salt1_buf[idx]);
}
for (int i = 0, idx = 0; i < salt2_len; i += 4, idx += 1)
{
s2[idx] = swap32_S (esalt_bufs[digests_offset].salt2_buf[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 (&ctx);
sha1_update_vector (&ctx, s1, salt1_len);
sha1_update_vector (&ctx, w, pw_len);
sha1_update_vector (&ctx, s2, salt2_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 m19300_sxx (KERN_ATTR_VECTOR_ESALT (sha1_double_salt_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]
};
/**
* 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];
}
const int salt1_len = esalt_bufs[digests_offset].salt1_len;
const int salt2_len = esalt_bufs[digests_offset].salt2_len;
u32 s1[64] = { 0 };
u32 s2[64] = { 0 };
for (int i = 0, idx = 0; i < salt1_len; i += 4, idx += 1)
{
s1[idx] = swap32_S (esalt_bufs[digests_offset].salt1_buf[idx]);
}
for (int i = 0, idx = 0; i < salt2_len; i += 4, idx += 1)
{
s2[idx] = swap32_S (esalt_bufs[digests_offset].salt2_buf[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 (&ctx);
sha1_update_vector (&ctx, s1, salt1_len);
sha1_update_vector (&ctx, w, pw_len);
sha1_update_vector (&ctx, s2, salt2_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);
}
}