Multiple changes:
* Added more preparations to support to crack passwords and salts up to length 256 * Added option --length-limit-disable to disable optimization based on password- and salt-length * Added option --self-test-disable to disable self-test functionality on startup
This commit is contained in:
@@ -77,10 +77,8 @@ but this is nededed for VS compiler which doesn't have inline keyword but has __
|
||||
// do not try to simply change this, it will not work
|
||||
|
||||
#define PW_MIN 0
|
||||
#define PW_MAX 255
|
||||
#define PW_MAX1 (PW_MAX + 1)
|
||||
#define PW_DICTMAX PW_MAX
|
||||
#define PW_DICTMAX1 PW_MAX1
|
||||
#define PW_MAX 256
|
||||
#define PW_MAX_OLD 55
|
||||
|
||||
#define HCBUFSIZ_TINY 0x1000
|
||||
#define HCBUFSIZ_LARGE 0x50000
|
||||
@@ -91,7 +89,7 @@ but this is nededed for VS compiler which doesn't have inline keyword but has __
|
||||
#define EXEC_CACHE 128
|
||||
#define SPEED_CACHE 128
|
||||
#define SPEED_MAXAGE 4096
|
||||
#define BLOCK_SIZE PW_MAX1
|
||||
#define BLOCK_SIZE 64
|
||||
#define EXPECTED_ITERATIONS 10000
|
||||
|
||||
#if defined (_WIN)
|
||||
|
||||
Reference in New Issue
Block a user