QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 1 | // Copyright (c) 2017 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/third_party/quiche/src/quic/test_tools/failing_proof_source.h" |
| 6 | |
| 7 | namespace quic { |
| 8 | namespace test { |
| 9 | |
dschinazi | 17d4242 | 2019-06-18 16:35:07 -0700 | [diff] [blame] | 10 | void FailingProofSource::GetProof(const QuicSocketAddress& /*server_address*/, |
| 11 | const std::string& /*hostname*/, |
| 12 | const std::string& /*server_config*/, |
| 13 | QuicTransportVersion /*transport_version*/, |
| 14 | QuicStringPiece /*chlo_hash*/, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 15 | std::unique_ptr<Callback> callback) { |
| 16 | callback->Run(false, nullptr, QuicCryptoProof(), nullptr); |
| 17 | } |
| 18 | |
| 19 | QuicReferenceCountedPointer<ProofSource::Chain> |
dschinazi | 17d4242 | 2019-06-18 16:35:07 -0700 | [diff] [blame] | 20 | FailingProofSource::GetCertChain(const QuicSocketAddress& /*server_address*/, |
| 21 | const std::string& /*hostname*/) { |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 22 | return QuicReferenceCountedPointer<Chain>(); |
| 23 | } |
| 24 | |
| 25 | void FailingProofSource::ComputeTlsSignature( |
dschinazi | 17d4242 | 2019-06-18 16:35:07 -0700 | [diff] [blame] | 26 | const QuicSocketAddress& /*server_address*/, |
| 27 | const std::string& /*hostname*/, |
| 28 | uint16_t /*signature_algorithm*/, |
| 29 | QuicStringPiece /*in*/, |
QUICHE team | a6ef0a6 | 2019-03-07 20:34:33 -0500 | [diff] [blame] | 30 | std::unique_ptr<SignatureCallback> callback) { |
| 31 | callback->Run(false, ""); |
| 32 | } |
| 33 | |
| 34 | } // namespace test |
| 35 | } // namespace quic |