blahaj/fuzz/fuzz_targets/serialize_share.rs

9 lines
141 B
Rust
Raw Normal View History

2020-04-21 18:16:48 +00:00
#![no_main]
use libfuzzer_sys::fuzz_target;
use sharks::Share;
fuzz_target!(|share: Share| {
let _data: Vec<u8> = (&share).into();
});