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

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

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