Resolved PR comments and added more fuzz targets.

This commit is contained in:
mingxguo27
2020-09-29 16:30:41 +00:00
parent 8231c89207
commit f79a659e69
8 changed files with 110 additions and 29 deletions

View File

@@ -0,0 +1,9 @@
#![no_main]
use fuzz_helper::process_ctap_any_type;
use libfuzzer_sys::fuzz_target;
// Generically fuzz inputs as CTAP commands.
fuzz_target!(|data: &[u8]| {
process_ctap_any_type(data);
});