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

Unified Diff: net/ssl/token_binding_nss.cc

Issue 1378613004: Set Token-Binding HTTP header (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@tb-tls-ext-new
Patch Set: rebase Created 5 years, 3 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/ssl/token_binding_nss.cc
diff --git a/net/ssl/token_binding_nss.cc b/net/ssl/token_binding_nss.cc
new file mode 100644
index 0000000000000000000000000000000000000000..87cc323aaca4ddbc64a194542370b5a1d5fe051e
--- /dev/null
+++ b/net/ssl/token_binding_nss.cc
@@ -0,0 +1,17 @@
+// Copyright 2015 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 "token_binding.h"
+
+#include "net/base/net_errors.h"
+
+namespace net {
+
+int BuildTokenBindingMessageFromTokenBindings(
+ const std::vector<std::string>& token_bindings,
+ std::string* out) {
+ return ERR_NOT_IMPLEMENTED;
+}
+
+} // namespace net

Powered by Google App Engine
This is Rietveld 408576698