crypto_test_utils_chromium.h 606 B

12345678910111213141516171819
  1. // Copyright 2022 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. #ifndef NET_QUIC_CRYPTO_TEST_UTILS_CHROMIUM_H_
  5. #define NET_QUIC_CRYPTO_TEST_UTILS_CHROMIUM_H_
  6. #include <memory>
  7. #include "net/third_party/quiche/src/quiche/quic/core/crypto/proof_source.h"
  8. #include "net/third_party/quiche/src/quiche/quic/core/crypto/proof_verifier.h"
  9. namespace net::test {
  10. std::unique_ptr<quic::ProofSource> ProofSourceForTestingChromium();
  11. } // namespace net::test
  12. #endif // NET_QUIC_CRYPTO_TEST_UTILS_CHROMIUM_H_