mirror of
https://github.com/sigp/lighthouse.git
synced 2026-03-09 11:41:51 +00:00
10 lines
159 B
Rust
10 lines
159 B
Rust
#![no_main]
|
|
#[macro_use] extern crate libfuzzer_sys;
|
|
extern crate hashing;
|
|
|
|
use hashing::hash;
|
|
|
|
fuzz_target!(|data: &[u8]| {
|
|
let _result = hash(data);
|
|
});
|