• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1 // Copyright 2013 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/quic/crypto/proof_source_chromium.h"
6 
7 using std::string;
8 using std::vector;
9 
10 namespace net {
11 
ProofSourceChromium()12 ProofSourceChromium::ProofSourceChromium() {
13 }
14 
GetProof(const string & hostname,const string & server_config,bool ecdsa_ok,const vector<string> ** out_certs,string * out_signature)15 bool ProofSourceChromium::GetProof(const string& hostname,
16                                    const string& server_config,
17                                    bool ecdsa_ok,
18                                    const vector<string>** out_certs,
19                                    string* out_signature) {
20   return false;
21 }
22 
23 }  // namespace net
24