tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

fuzzing.h (301B)


      1 /* Copyright (c) 2016-2021, The Tor Project, Inc. */
      2 /* See LICENSE for licensing information */
      3 #ifndef FUZZING_H
      4 #define FUZZING_H
      5 
      6 int fuzz_init(void);
      7 int fuzz_cleanup(void);
      8 int fuzz_main(const uint8_t *data, size_t sz);
      9 
     10 void disable_signature_checking(void);
     11 
     12 #endif /* !defined(FUZZING_H) */