mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-14 03:39:09 +00:00
Update based on recommendations and examination of mode 19500
This commit is contained in:
parent
33ce4f9720
commit
73104fafea
@ -27,8 +27,7 @@ KERNEL_FQ void m00126_mxx (KERN_ATTR_RULES ())
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
u32 dash[16] = { 0 };
|
||||
dash[0] = 0x2d2d0000;
|
||||
const u32 dash[16] = { 0x2d2d0000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
||||
/**
|
||||
* base
|
||||
@ -78,8 +77,7 @@ KERNEL_FQ void m00126_sxx (KERN_ATTR_RULES ())
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
u32 dash[16] = { 0 };
|
||||
dash[0] = 0x2d2d0000;
|
||||
const u32 dash[16] = { 0x2d2d0000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
||||
/**
|
||||
* digest
|
||||
|
@ -25,8 +25,7 @@ KERNEL_FQ void m00126_mxx (KERN_ATTR_BASIC ())
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
u32 dash[16] = { 0 };
|
||||
dash[0] = 0x2d2d0000;
|
||||
const u32 dash[16] = { 0x2d2d0000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
||||
/**
|
||||
* base
|
||||
@ -72,8 +71,7 @@ KERNEL_FQ void m00126_sxx (KERN_ATTR_BASIC ())
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
u32 dash[16] = { 0 };
|
||||
dash[0] = 0x2d2d0000;
|
||||
const u32 dash[16] = { 0x2d2d0000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
||||
/**
|
||||
* digest
|
||||
|
@ -25,8 +25,7 @@ KERNEL_FQ void m00126_mxx (KERN_ATTR_VECTOR ())
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
u32x dash[64] = { 0 };
|
||||
dash[0] = 0x2d2d0000;
|
||||
const u32x dash[16] = { 0x2d2d0000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
||||
/**
|
||||
* base
|
||||
@ -90,9 +89,8 @@ KERNEL_FQ void m00126_sxx (KERN_ATTR_VECTOR ())
|
||||
|
||||
if (gid >= gid_max) return;
|
||||
|
||||
u32x dash[64] = { 0 };
|
||||
dash[0] = 0x2d2d0000;
|
||||
|
||||
const u32 dash[16] = { 0x2d2d0000, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
|
||||
|
||||
/**
|
||||
* digest
|
||||
*/
|
||||
|
@ -17,7 +17,7 @@ static const u32 DGST_POS2 = 2;
|
||||
static const u32 DGST_POS3 = 1;
|
||||
static const u32 DGST_SIZE = DGST_SIZE_4_5;
|
||||
static const u32 HASH_CATEGORY = HASH_CATEGORY_RAW_HASH_SALTED;
|
||||
static const char *HASH_NAME = "SHA1DASH / sha1(--$salt--$pass--)";
|
||||
static const char *HASH_NAME = "sha1(--$salt--$pass--)";
|
||||
static const u64 KERN_TYPE = 28200;
|
||||
static const u32 OPTI_TYPE = OPTI_TYPE_ZERO_BYTE
|
||||
| OPTI_TYPE_PRECOMPUTE_INIT
|
||||
|
Loading…
Reference in New Issue
Block a user