Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(140)

Unified Diff: net/quic/crypto/channel_id_nss.cc

Issue 15937012: Land Recent QUIC changes. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Small bug fixes Created 7 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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

Powered by Google App Engine
This is Rietveld 408576698