File: certreq.rs

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

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