Add new option for modules OPTS_TYPE_SELF_TEST_DISABLE to disable self-test functionality from hash-mode directly

This commit is contained in:
Jens Steube
2020-05-08 10:18:17 +02:00
parent c7da6357ff
commit 33579ae3db
11 changed files with 32 additions and 13 deletions
+1
View File
@@ -428,6 +428,7 @@ typedef enum opts_type
OPTS_TYPE_COPY_TMPS = (1ULL << 46), // if we want to use data from tmps buffer (for example get the PMK in WPA)
OPTS_TYPE_POTFILE_NOPASS = (1ULL << 47), // sometimes the password should not be printed to potfile
OPTS_TYPE_DYNAMIC_SHARED = (1ULL << 48), // use dynamic shared memory (note: needs special kernel changes)
OPTS_TYPE_SELF_TEST_DISABLE = (1ULL << 49), // some algos use JiT in combinations with a salt or create too much startup time
} opts_type_t;