From 787391ea3b5af2acf5e3c83372510f0c79477ad7 Mon Sep 17 00:00:00 2001 From: Matt Johnston Date: Thu, 10 Nov 2022 14:49:26 +0800 Subject: [PATCH] Force DROPBEAR_DSS when fuzzing --- sysoptions.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/sysoptions.h b/sysoptions.h index 69018dd..507a589 100644 --- a/sysoptions.h +++ b/sysoptions.h @@ -382,4 +382,10 @@ #define DROPBEAR_MULTI 0 #endif +/* Fuzzing expects all key types to be enabled */ +#ifdef DROPBEAR_DSS +#undef DROPBEAR_DSS +#endif +#define DROPBEAR_DSS 1 + /* no include guard for this file */