Fuzz Header::read and Header::write

This commit is contained in:
Jack Grigg 2020-01-26 22:40:51 +00:00
parent a5fda26993
commit e55c05c97c
3 changed files with 21 additions and 0 deletions

View file

@ -18,6 +18,10 @@ git = "https://github.com/rust-fuzz/libfuzzer-sys.git"
[workspace]
members = ["."]
[[bin]]
name = "header"
path = "fuzz_targets/header.rs"
[[bin]]
name = "trial_decrypt"
path = "fuzz_targets/trial_decrypt.rs"

View file

@ -0,0 +1,6 @@
#![no_main]
use libfuzzer_sys::fuzz_target;
fuzz_target!(|data: &[u8]| {
age::fuzz_header(data);
});