Files
OpenSK/fuzz/fuzz_targets/fuzz_target_process_ctap_command.rs
2020-09-29 16:30:41 +00:00

10 lines
197 B
Rust

#![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);
});