summaryrefslogtreecommitdiffhomepage
path: root/fuzzer-kexdh.c
diff options
context:
space:
mode:
authorMatt Johnston <matt@ucc.asn.au>2018-03-08 23:23:19 +0800
committerMatt Johnston <matt@ucc.asn.au>2018-03-08 23:23:19 +0800
commit397af3e6a6ff4041894e2861b5fb0fae5c187997 (patch)
tree2d29b04ef3b4d03d439ec3b41a1998f4638c57b4 /fuzzer-kexdh.c
parent933bc5f8a72342a711ab1b6b41ec0333c4fc55dd (diff)
kexhashbuf was much to small in kex fuzzers
Diffstat (limited to 'fuzzer-kexdh.c')
-rw-r--r--fuzzer-kexdh.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/fuzzer-kexdh.c b/fuzzer-kexdh.c
index 7d3491c..f7abea2 100644
--- a/fuzzer-kexdh.c
+++ b/fuzzer-kexdh.c
@@ -54,8 +54,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
dropbear_exit("Bad kex value");
}
- ses.kexhashbuf = buf_new(4);
- buf_putint(ses.kexhashbuf, 12345);
+ ses.kexhashbuf = buf_new(KEXHASHBUF_MAX_INTS);
kexdh_comb_key(dh_param, &dh_e, svr_opts.hostkey);
/* kexhashbuf is freed in kexdh_comb_key */