// Copyright 2016 The Chromium Authors. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. #include "quiche/http2/test_tools/random_util.h" #include <cmath> #include <string> namespace http2 { namespace test { // Here "word" means something that starts with a lower-case letter, and has // zero or more additional characters that are numbers or lower-case letters. std::string GenerateHttp2HeaderName(size_t len, Http2Random* rng) { … } std::string GenerateWebSafeString(size_t len, Http2Random* rng) { … } std::string GenerateWebSafeString(size_t lo, size_t hi, Http2Random* rng) { … } } // namespace test } // namespace http2