1 // Copyright 2016 The Chromium Authors 2 // Use of this source code is governed by a BSD-style license that can be 3 // found in the LICENSE file. 4 5 #include <stddef.h> 6 #include <stdint.h> 7 8 #include "base/containers/span.h" 9 #include "base/hash/hash.h" 10 11 // Entry point for LibFuzzer. LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)12extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { 13 base::PersistentHash(base::make_span(data, size)); 14 base::FastHash(base::make_span(data, size)); 15 return 0; 16 } 17