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 / tests / fuzz_smoke.rs
303 B 11 lines
1use proptest::prelude::*; 2 3proptest! { 4 #![proptest_config(ProptestConfig::with_cases(1024))] 5 6 #[test] 7 fn tls_parsers_never_panic(data in proptest::collection::vec(any::<u8>(), 0..4096)) { 8 knot_edge::fuzz::spki_of_certificate(&data); 9 knot_edge::fuzz::spki_pin(&data); 10 } 11}