Chromium Code Reviews| OLD | NEW |
|---|---|
| (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 | |
| OLD | NEW |