From 943c57ae5f8c2783fa98c88cf08f65ccf4d90a2f Mon Sep 17 00:00:00 2001 From: philsmd Date: Thu, 14 May 2020 19:27:39 +0200 Subject: [PATCH] luks: remove self-test example hash --- src/modules/module_14600.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/modules/module_14600.c b/src/modules/module_14600.c index 8999d6091..9ac94e50d 100644 --- a/src/modules/module_14600.c +++ b/src/modules/module_14600.c @@ -26,8 +26,8 @@ static const u64 OPTS_TYPE = OPTS_TYPE_PT_GENERATE_LE | OPTS_TYPE_SELF_TEST_DISABLE | OPTS_TYPE_BINARY_HASHFILE; static const u32 SALT_TYPE = SALT_TYPE_EMBEDDED; -static const char *ST_PASS = "hashcat"; -static const char *ST_HASH = "tbd"; +static const char *ST_PASS = NULL; +static const char *ST_HASH = NULL; u32 module_attack_exec (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra) { return ATTACK_EXEC; } u32 module_dgst_pos0 (MAYBE_UNUSED const hashconfig_t *hashconfig, MAYBE_UNUSED const user_options_t *user_options, MAYBE_UNUSED const user_options_extra_t *user_options_extra) { return DGST_POS0; }