From e83c71a18ff1664c41f23d79669c017d909ec4ad Mon Sep 17 00:00:00 2001 From: Jens Steube Date: Sat, 14 Dec 2019 18:44:13 +0100 Subject: [PATCH] Add missing AUX4 in selftest.c --- src/selftest.c | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/selftest.c b/src/selftest.c index 84eb88542..8ccde026a 100644 --- a/src/selftest.c +++ b/src/selftest.c @@ -554,6 +554,10 @@ static int selftest (hashcat_ctx_t *hashcat_ctx, hc_device_param_t *device_param { if (run_kernel (hashcat_ctx, device_param, KERN_RUN_AUX3, 1, false, 0) == -1) return -1; } + else if (hashconfig->opts_type & OPTS_TYPE_AUX4) + { + if (run_kernel (hashcat_ctx, device_param, KERN_RUN_AUX4, 1, false, 0) == -1) return -1; + } else { if (run_kernel (hashcat_ctx, device_param, KERN_RUN_3, 1, false, 0) == -1) return -1;