mirror of
https://github.com/clearml/dropbear
synced 2025-02-24 12:54:12 +00:00
9 lines
161 B
C
9 lines
161 B
C
#include "fuzz.h"
|
|
|
|
#include "fuzz-sshpacketmutator.c"
|
|
|
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
|
return fuzz_run_client(Data, Size, 0);
|
|
}
|
|
|