mirror of
http://galexander.org/git/simplesshd.git
synced 2024-10-31 20:40:22 +00:00
7 lines
126 B
C
7 lines
126 B
C
|
#include "fuzz.h"
|
||
|
|
||
|
int LLVMFuzzerTestOneInput(const uint8_t *Data, size_t Size) {
|
||
|
return fuzz_run_preauth(Data, Size, 0);
|
||
|
}
|
||
|
|