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

Side by Side Diff: crypto/ec_private_key_openssl.cc

Issue 8413024: Add ECPrivateKey for Elliptic Curve keypair generation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix win build for real Created 9 years, 1 month 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
OLDNEW
(Empty)
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
3 // found in the LICENSE file.
4
5 #include "crypto/ec_private_key.h"
6
7 #include "base/logging.h"
8
9 namespace crypto {
10
11 ECPrivateKey::~ECPrivateKey() {
12 }
13
14 // static
15 ECPrivateKey* ECPrivateKey::Create() {
16 NOTIMPLEMENTED();
17 return NULL;
18 }
19
20 // static
21 ECPrivateKey* ECPrivateKey::CreateSensitive() {
22 NOTIMPLEMENTED();
23 return NULL;
24 }
25
26 // static
27 ECPrivateKey* ECPrivateKey::CreateFromPrivateKeyInfo(
28 const std::vector<uint8>& input) {
29 NOTIMPLEMENTED();
30 return NULL;
31 }
32
33 // static
34 ECPrivateKey* ECPrivateKey::CreateSensitiveFromPrivateKeyInfo(
35 const std::vector<uint8>& input) {
36 NOTIMPLEMENTED();
37 return NULL;
38 }
39
40 bool ECPrivateKey::ExportPrivateKey(std::vector<uint8>* output) {
41 NOTIMPLEMENTED();
42 return false;
43 }
44
45 bool ECPrivateKey::ExportPublicKey(std::vector<uint8>* output) {
46 NOTIMPLEMENTED();
47 return false;
48 }
wtc 2011/11/03 02:17:50 Also need stubs for ExportValue and ExportECParams
mattm 2011/11/04 02:39:14 Done.
49
50 } // namespace crypto
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698