This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

core / knot2 / crates / knot-edge / fuzz / fuzz_targets / spki.rs
127 B 7 lines
1#![no_main] 2 3use libfuzzer_sys::fuzz_target; 4 5fuzz_target!(|data: &[u8]| { 6 knot_edge::fuzz::spki_of_certificate(data); 7});