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

Side by Side Diff: crypto/ec_private_key_openssl.cc

Issue 10700099: NSS Channel ID: don't check ECC support on every socket creation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: rebase Created 8 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « crypto/ec_private_key_nss.cc ('k') | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2011 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2011 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "crypto/ec_private_key.h" 5 #include "crypto/ec_private_key.h"
6 6
7 #include "base/logging.h" 7 #include "base/logging.h"
8 8
9 namespace crypto { 9 namespace crypto {
10 10
11 ECPrivateKey::~ECPrivateKey() {} 11 ECPrivateKey::~ECPrivateKey() {}
12 12
13 // static 13 // static
14 bool ECPrivateKey::IsSupported() {
15 return false;
16 }
17
18 // static
14 ECPrivateKey* ECPrivateKey::Create() { 19 ECPrivateKey* ECPrivateKey::Create() {
15 NOTIMPLEMENTED(); 20 NOTIMPLEMENTED();
16 return NULL; 21 return NULL;
17 } 22 }
18 23
19 // static 24 // static
20 ECPrivateKey* ECPrivateKey::CreateSensitive() { 25 ECPrivateKey* ECPrivateKey::CreateSensitive() {
21 NOTIMPLEMENTED(); 26 NOTIMPLEMENTED();
22 return NULL; 27 return NULL;
23 } 28 }
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after
57 NOTIMPLEMENTED(); 62 NOTIMPLEMENTED();
58 return false; 63 return false;
59 } 64 }
60 65
61 bool ECPrivateKey::ExportECParams(std::vector<uint8>* output) { 66 bool ECPrivateKey::ExportECParams(std::vector<uint8>* output) {
62 NOTIMPLEMENTED(); 67 NOTIMPLEMENTED();
63 return false; 68 return false;
64 } 69 }
65 70
66 } // namespace crypto 71 } // namespace crypto
OLDNEW
« no previous file with comments | « crypto/ec_private_key_nss.cc ('k') | net/socket/ssl_client_socket_nss.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698