Added more fuzz targets

This commit is contained in:
mingxguo27
2020-09-25 19:05:07 +00:00
parent 3a42ab15ae
commit e8e52ff58a
3 changed files with 31 additions and 6 deletions

View File

@@ -0,0 +1,9 @@
#![no_main]
use fuzz_helper::{process_input, InputType};
use libfuzzer_sys::fuzz_target;
// Fuzz inputs as CTAP1 U2F raw message.
fuzz_target!(|data: &[u8]| {
process_input(data, InputType::Ctap1);
});