// Copyright 2018 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/quic/core/crypto/quic_hkdf.h" #include <string> #include "absl/base/macros.h" #include "absl/strings/escaping.h" #include "quiche/quic/platform/api/quic_test.h" namespace quic { namespace test { namespace { struct HKDFInput { … }; // These test cases are taken from // https://tools.ietf.org/html/rfc5869#appendix-A. static const HKDFInput kHKDFInputs[] = …; class QuicHKDFTest : public QuicTest { … }; TEST_F(QuicHKDFTest, HKDF) { … } } // namespace } // namespace test } // namespace quic