xref: /aosp_15_r20/external/cronet/net/http/http_security_headers_hsts_fuzzer.cc (revision 6777b5387eb2ff775bb5750e3f5d96f37fb7352b)
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 #include <string>
8 
9 #include "base/time/time.h"
10 #include "net/http/http_security_headers.h"
11 
LLVMFuzzerTestOneInput(const uint8_t * data,size_t size)12 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
13   std::string input(data, data + size);
14   base::TimeDelta max_age;
15   bool include_subdomains = false;
16   net::ParseHSTSHeader(input, &max_age, &include_subdomains);
17   return 0;
18 }
19