| OLD | NEW |
| (Empty) | |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. |
| 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/base/hash_value.h" |
| 11 #include "net/http/http_security_headers.h" |
| 12 #include "net/ssl/ssl_info.h" |
| 13 #include "url/gurl.h" |
| 14 |
| 15 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) { |
| 16 std::string input(data, data + size); |
| 17 base::TimeDelta max_age; |
| 18 bool include_subdomains; |
| 19 net::HashValueVector spki_hashes; |
| 20 GURL report_uri; |
| 21 |
| 22 net::HashValue hash; |
| 23 hash.FromString("sha256/1111111111111111111111111111111111111111111="); |
| 24 |
| 25 net::SSLInfo ssl_info; |
| 26 ssl_info.public_key_hashes.push_back(hash); |
| 27 |
| 28 net::ParseHPKPHeader(input, ssl_info.public_key_hashes, &max_age, |
| 29 &include_subdomains, &spki_hashes, &report_uri); |
| 30 return 0; |
| 31 } |
| OLD | NEW |