diff --git a/fuzz/bndiv.c b/fuzz/bndiv.c index 30d84482a63e8cefad7e526a66238da942a38989..e9c70bbd4c5b1c5916b66f776471ce650a271fd2 100644 --- a/fuzz/bndiv.c +++ b/fuzz/bndiv.c @@ -18,6 +18,9 @@ #include #include "fuzzer.h" +/* 256 kB */ +#define MAX_LEN (256 * 1000) + static BN_CTX *ctx; static BIGNUM *b1; static BIGNUM *b2; @@ -47,6 +50,10 @@ int FuzzerTestOneInput(const uint8_t *buf, size_t len) /* s1 and s2 will be the signs for b1 and b2. */ int s1 = 0, s2 = 0; + /* limit the size of the input to avoid timeout */ + if (len > MAX_LEN) + len = MAX_LEN; + /* We are going to split the buffer in two, sizes l1 and l2, giving b1 and * b2. */