Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(50)

Side by Side Diff: net/http/http_security_headers_expect_ct_fuzzer.cc

Issue 2753703002: Add Expect-CT header parsing (Closed)
Patch Set: add txt extensions to seed corpus Created 3 years, 8 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « net/http/http_security_headers.cc ('k') | net/http/http_security_headers_unittest.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 // Copyright 2017 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/http/http_security_headers.h"
11 #include "url/gurl.h"
12
13 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
14 std::string input(data, data + size);
15 base::TimeDelta max_age;
16 bool enforce;
17 GURL report_uri;
18
19 net::ParseExpectCTHeader(input, &max_age, &enforce, &report_uri);
20 return 0;
21 }
OLDNEW
« no previous file with comments | « net/http/http_security_headers.cc ('k') | net/http/http_security_headers_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698