1
0
mirror of http://galexander.org/git/simplesshd.git synced 2024-10-31 20:40:22 +00:00
simplesshd/dropbear/fuzzer-preauth.c

7 lines
126 B
C
Raw Normal View History

2019-06-09 20:44:26 +00:00
#include "fuzz.h"
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
return fuzz_run_preauth(Data, Size, 0);
}