You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

8 lines
190 B

  1. #include <openssl/evp.h>
  2. extern "C" int LLVMFuzzerTestOneInput(uint8_t *buf, size_t len) {
  3. const uint8_t *bufp = buf;
  4. EVP_PKEY_free(d2i_AutoPrivateKey(NULL, &bufp, len));
  5. return 0;
  6. }