aboutsummaryrefslogtreecommitdiff
path: root/crates/tor-cert/fuzz/fuzz_targets/cert.rs
blob: 23aec97562bd2d5e016fb3ad65f382ab9abf4558 (plain)
1
2
3
4
5
6
7
#![no_main]
use libfuzzer_sys::fuzz_target;
use tor_cert::Ed25519Cert;

fuzz_target!(|data: &[u8]| {
    let _ = Ed25519Cert::decode(data);
});