| Index: net/quic/crypto/channel_id_nss.cc
|
| diff --git a/net/quic/crypto/channel_id_nss.cc b/net/quic/crypto/channel_id_nss.cc
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..faacfe473b8b17e604b6ab52f5b18a1d78600aa7
|
| --- /dev/null
|
| +++ b/net/quic/crypto/channel_id_nss.cc
|
| @@ -0,0 +1,20 @@
|
| +// Copyright (c) 2013 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#include "net/quic/crypto/channel_id.h"
|
| +
|
| +using base::StringPiece;
|
| +
|
| +namespace net {
|
| +
|
| +// TODO(rtenneti): Implement NSS support for ChannelIDVerifier::Verify and
|
| +// real ChannelIDSigner (using the SpdyCredentialBuilder as a model).
|
| +// static
|
| +bool ChannelIDVerifier::Verify(StringPiece key,
|
| + StringPiece signed_data,
|
| + StringPiece signature) {
|
| + return true;
|
| +}
|
| +
|
| +} // namespace net
|
|
|