mirror of
https://github.com/hashcat/hashcat.git
synced 2025-05-11 11:28:48 +00:00
Fixed display problem of the 'Optimizers applied' list for algorithms using OPTI_TYPE_SLOW_HASH_SIMD_INIT2 and/or OPTI_TYPE_SLOW_HASH_SIMD_LOOP2
This commit is contained in:
parent
80fa78374e
commit
7eee4931bb
@ -45,6 +45,7 @@
|
|||||||
- Skip chained generated rules that exceed the maximum number of function calls
|
- Skip chained generated rules that exceed the maximum number of function calls
|
||||||
- Fixed incorrect plaintext check for 25400 and 26610. Increased plaintext check to 32 bytes to prevent false positives.
|
- Fixed incorrect plaintext check for 25400 and 26610. Increased plaintext check to 32 bytes to prevent false positives.
|
||||||
- Fixed bug in --stdout that caused certain rules to malfunction
|
- Fixed bug in --stdout that caused certain rules to malfunction
|
||||||
|
- Fixed display problem of the "Optimizers applied" list for algorithms using OPTI_TYPE_SLOW_HASH_SIMD_INIT2 and/or OPTI_TYPE_SLOW_HASH_SIMD_LOOP2
|
||||||
|
|
||||||
##
|
##
|
||||||
## Technical
|
## Technical
|
||||||
|
@ -80,7 +80,9 @@ static const char *const OPTI_STR_BRUTE_FORCE = "Brute-Force";
|
|||||||
static const char *const OPTI_STR_RAW_HASH = "Raw-Hash";
|
static const char *const OPTI_STR_RAW_HASH = "Raw-Hash";
|
||||||
static const char *const OPTI_STR_REGISTER_LIMIT = "Register-Limit";
|
static const char *const OPTI_STR_REGISTER_LIMIT = "Register-Limit";
|
||||||
static const char *const OPTI_STR_SLOW_HASH_SIMD_INIT = "Slow-Hash-SIMD-INIT";
|
static const char *const OPTI_STR_SLOW_HASH_SIMD_INIT = "Slow-Hash-SIMD-INIT";
|
||||||
|
static const char *const OPTI_STR_SLOW_HASH_SIMD_INIT2 = "Slow-Hash-SIMD-INIT-2";
|
||||||
static const char *const OPTI_STR_SLOW_HASH_SIMD_LOOP = "Slow-Hash-SIMD-LOOP";
|
static const char *const OPTI_STR_SLOW_HASH_SIMD_LOOP = "Slow-Hash-SIMD-LOOP";
|
||||||
|
static const char *const OPTI_STR_SLOW_HASH_SIMD_LOOP2 = "Slow-Hash-SIMD-LOOP-2";
|
||||||
static const char *const OPTI_STR_SLOW_HASH_SIMD_COMP = "Slow-Hash-SIMD-COMP";
|
static const char *const OPTI_STR_SLOW_HASH_SIMD_COMP = "Slow-Hash-SIMD-COMP";
|
||||||
static const char *const OPTI_STR_USES_BITS_8 = "Uses-8-Bit";
|
static const char *const OPTI_STR_USES_BITS_8 = "Uses-8-Bit";
|
||||||
static const char *const OPTI_STR_USES_BITS_16 = "Uses-16-Bit";
|
static const char *const OPTI_STR_USES_BITS_16 = "Uses-16-Bit";
|
||||||
@ -1029,7 +1031,9 @@ const char *stroptitype (const u32 opti_type)
|
|||||||
case OPTI_TYPE_RAW_HASH: return OPTI_STR_RAW_HASH;
|
case OPTI_TYPE_RAW_HASH: return OPTI_STR_RAW_HASH;
|
||||||
case OPTI_TYPE_REGISTER_LIMIT: return OPTI_STR_REGISTER_LIMIT;
|
case OPTI_TYPE_REGISTER_LIMIT: return OPTI_STR_REGISTER_LIMIT;
|
||||||
case OPTI_TYPE_SLOW_HASH_SIMD_INIT: return OPTI_STR_SLOW_HASH_SIMD_INIT;
|
case OPTI_TYPE_SLOW_HASH_SIMD_INIT: return OPTI_STR_SLOW_HASH_SIMD_INIT;
|
||||||
|
case OPTI_TYPE_SLOW_HASH_SIMD_INIT2: return OPTI_STR_SLOW_HASH_SIMD_INIT2;
|
||||||
case OPTI_TYPE_SLOW_HASH_SIMD_LOOP: return OPTI_STR_SLOW_HASH_SIMD_LOOP;
|
case OPTI_TYPE_SLOW_HASH_SIMD_LOOP: return OPTI_STR_SLOW_HASH_SIMD_LOOP;
|
||||||
|
case OPTI_TYPE_SLOW_HASH_SIMD_LOOP2: return OPTI_STR_SLOW_HASH_SIMD_LOOP2;
|
||||||
case OPTI_TYPE_SLOW_HASH_SIMD_COMP: return OPTI_STR_SLOW_HASH_SIMD_COMP;
|
case OPTI_TYPE_SLOW_HASH_SIMD_COMP: return OPTI_STR_SLOW_HASH_SIMD_COMP;
|
||||||
case OPTI_TYPE_USES_BITS_8: return OPTI_STR_USES_BITS_8;
|
case OPTI_TYPE_USES_BITS_8: return OPTI_STR_USES_BITS_8;
|
||||||
case OPTI_TYPE_USES_BITS_16: return OPTI_STR_USES_BITS_16;
|
case OPTI_TYPE_USES_BITS_16: return OPTI_STR_USES_BITS_16;
|
||||||
|
Loading…
Reference in New Issue
Block a user