diff options
-rw-r--r-- | fuzzer-kexdh.c | 2 | ||||
-rw-r--r-- | fuzzer-kexecdh.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/fuzzer-kexdh.c b/fuzzer-kexdh.c index 998a3eb..6a2b329 100644 --- a/fuzzer-kexdh.c +++ b/fuzzer-kexdh.c @@ -10,7 +10,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { static int once = 0; static struct key_context* keep_newkeys = NULL; /* number of generated parameters is limited by the timeout for the first run */ - #define NUM_PARAMS 300 + #define NUM_PARAMS 80 static struct kex_dh_param *dh_params[NUM_PARAMS]; if (!once) { diff --git a/fuzzer-kexecdh.c b/fuzzer-kexecdh.c index e3a648f..e97682c 100644 --- a/fuzzer-kexecdh.c +++ b/fuzzer-kexecdh.c @@ -11,7 +11,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { static const struct dropbear_kex *ecdh[3]; /* 256, 384, 521 */ static struct key_context* keep_newkeys = NULL; /* number of generated parameters is limited by the timeout for the first run */ - #define NUM_PARAMS 300 + #define NUM_PARAMS 80 static struct kex_ecdh_param *ecdh_params[NUM_PARAMS]; if (!once) { |