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

Side by Side Diff: net/ssl/token_binding_nss.cc

Issue 1882433002: Removing NSS files and USE_OPENSSL flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase. Created 4 years, 8 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 unified diff | Download patch
OLDNEW
(Empty)
1 // Copyright 2015 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 "token_binding.h"
6
7 #include "net/base/net_errors.h"
8
9 namespace net {
10
11 bool IsTokenBindingSupported() {
12 return false;
13 }
14
15 bool SignTokenBindingEkm(base::StringPiece ekm,
16 crypto::ECPrivateKey* key,
17 std::vector<uint8_t>* out) {
18 return false;
19 }
20
21 Error BuildTokenBindingMessageFromTokenBindings(
22 const std::vector<base::StringPiece>& token_bindings,
23 std::string* out) {
24 NOTREACHED();
25 return ERR_NOT_IMPLEMENTED;
26 }
27
28 Error BuildTokenBinding(TokenBindingType type,
29 crypto::ECPrivateKey* key,
30 const std::vector<uint8_t>& ekm,
31 std::string* out) {
32 NOTREACHED();
33 return ERR_NOT_IMPLEMENTED;
34 }
35
36 TokenBinding::TokenBinding() {}
37
38 bool ParseTokenBindingMessage(base::StringPiece token_binding_message,
39 std::vector<TokenBinding>* token_bindings) {
40 NOTREACHED();
41 return false;
42 }
43
44 bool VerifyEKMSignature(base::StringPiece ec_point,
45 base::StringPiece signature,
46 base::StringPiece ekm) {
47 NOTREACHED();
48 return false;
49 }
50
51 } // namespace net
OLDNEW
« no previous file with comments | « net/ssl/ssl_cipher_suite_names.cc ('k') | net/test/embedded_test_server/embedded_test_server_unittest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698