diff options
author | Matt Johnston <matt@ucc.asn.au> | 2020-05-26 23:13:23 +0800 |
---|---|---|
committer | Matt Johnston <matt@ucc.asn.au> | 2020-05-26 23:13:23 +0800 |
commit | cfe90bc6bd2778475f07f8a45838393b2e3169a2 (patch) | |
tree | 797540e0d651c9427409f942f785622e415a97ab /fuzzer-verify.c | |
parent | 0aefec6c89b6ba47e1256da51aa4c62e84248e7e (diff) |
Fix untested rsa-sha256 change to fuzzer-verify
Diffstat (limited to 'fuzzer-verify.c')
-rw-r--r-- | fuzzer-verify.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fuzzer-verify.c b/fuzzer-verify.c index cdf7804..a0ad086 100644 --- a/fuzzer-verify.c +++ b/fuzzer-verify.c @@ -2,6 +2,7 @@ #include "session.h" #include "fuzz-wrapfd.h" #include "debug.h" +#include "dss.h" static void setup_fuzzer(void) { fuzz_common_setup(); @@ -32,7 +33,7 @@ int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) { enum signature_type sigtype; if (keytype == DROPBEAR_SIGNKEY_RSA) { /* Flip a coin to decide rsa signature type */ - int flag = buf_getbyte(fuzz_input); + int flag = buf_getbyte(fuzz.input); if (flag & 0x01) { sigtype = DROPBEAR_SIGNATURE_RSA_SHA256; } else { |