// Copyright 2022 The Chromium Authors // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #ifdef UNSAFE_BUFFERS_BUILD // TODO(crbug.com/40284755): Remove this and spanify to fix the errors. #pragma allow_unsafe_buffers #endif #include "net/test/ssl_test_util.h" #include <string> #include <string_view> #include "third_party/boringssl/src/include/openssl/hpke.h" namespace net { bssl::UniquePtr<SSL_ECH_KEYS> MakeTestEchKeys( std::string_view public_name, size_t max_name_len, std::vector<uint8_t>* ech_config_list) { … } } // namespace net