File: certreq.rs

package info (click to toggle)
rust-x509-parser 0.18.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 760 kB
  • sloc: python: 29; makefile: 2; sh: 1
file content (8 lines) | stat: -rw-r--r-- 190 bytes parent folder | download | duplicates (2)
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);
});