Welcome to mirror list, hosted at ThFree Co, Russian Federation.

cert.cc « fuzz - github.com/mono/boringssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ad40a3190c47625246a101253cd41839955bc023 (plain)
1
2
3
4
5
6
7
#include <openssl/x509.h>

extern "C" int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
  const uint8_t *bufp = buf;
  X509_free(d2i_X509(NULL, &bufp, len));
  return 0;
}