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 "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 } |
OLD | NEW |