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

Side by Side Diff: net/cert/internal/verify_name_match_normalizename_fuzzer.cc

Issue 1931723002: fuzzer for net::NormalizeName (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add //base dep Created 4 years, 7 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/BUILD.gn ('k') | no next file » | 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 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 "net/cert/internal/verify_name_match.h"
6
7 #include "net/der/input.h"
8
9 // Entry point for LibFuzzer.
10 extern "C" int LLVMFuzzerTestOneInput(const uint8_t* data, size_t size) {
11 net::der::Input in(data, size);
12 std::string normalized_der;
13 bool success = net::NormalizeName(in, &normalized_der);
14 if (success) {
15 // If the input was successfully normalized, re-normalizing it should
16 // produce the same output again.
17 std::string renormalized_der;
18 bool renormalize_success =
19 net::NormalizeName(net::der::Input(&normalized_der), &renormalized_der);
20 CHECK(renormalize_success);
21 CHECK_EQ(normalized_der, renormalized_der);
22 }
23 return 0;
24 }
OLDNEW
« no previous file with comments | « net/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698