| OLD | NEW |
| (Empty) | |
| 1 // Copyright (c) 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/channel_id.h" |
| 6 |
| 7 using base::StringPiece; |
| 8 |
| 9 namespace net { |
| 10 |
| 11 // TODO(rtenneti): Implement NSS support for ChannelIDVerifier::Verify and |
| 12 // real ChannelIDSigner (using the SpdyCredentialBuilder as a model). |
| 13 // static |
| 14 bool ChannelIDVerifier::Verify(StringPiece key, |
| 15 StringPiece signed_data, |
| 16 StringPiece signature) { |
| 17 return true; |
| 18 } |
| 19 |
| 20 } // namespace net |
| OLD | NEW |