blob: 60b6a95fd11b6babca0874c80e239ee3eef5fc1b [file] [log] [blame]
QUICHE teama6ef0a62019-03-07 20:34:33 -05001// 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
7namespace quic {
8namespace test {
9
dschinazi17d42422019-06-18 16:35:07 -070010void 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 teama6ef0a62019-03-07 20:34:33 -050015 std::unique_ptr<Callback> callback) {
16 callback->Run(false, nullptr, QuicCryptoProof(), nullptr);
17}
18
19QuicReferenceCountedPointer<ProofSource::Chain>
dschinazi17d42422019-06-18 16:35:07 -070020FailingProofSource::GetCertChain(const QuicSocketAddress& /*server_address*/,
21 const std::string& /*hostname*/) {
QUICHE teama6ef0a62019-03-07 20:34:33 -050022 return QuicReferenceCountedPointer<Chain>();
23}
24
25void FailingProofSource::ComputeTlsSignature(
dschinazi17d42422019-06-18 16:35:07 -070026 const QuicSocketAddress& /*server_address*/,
27 const std::string& /*hostname*/,
28 uint16_t /*signature_algorithm*/,
29 QuicStringPiece /*in*/,
QUICHE teama6ef0a62019-03-07 20:34:33 -050030 std::unique_ptr<SignatureCallback> callback) {
31 callback->Run(false, "");
32}
33
34} // namespace test
35} // namespace quic