File: x509_parse.rs

package info (click to toggle)
rust-x509-parser 0.17.0-4.1
  • links: PTS, VCS
  • area: main
  • in suites: forky, trixie
  • size: 720 kB
  • sloc: python: 29; makefile: 2; sh: 1
file content (7 lines) | stat: -rw-r--r-- 162 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
#![no_main]
use libfuzzer_sys::fuzz_target;

fuzz_target!(|data: &[u8]| {
    // fuzzed code goes here
    let _ = x509_parser::parse_x509_certificate(data);
});