Jeff Thompson | 7b79eb6 | 2013-09-12 18:48:29 -0700 | [diff] [blame^] | 1 | /** |
2 | * @author: Jeff Thompson | ||||
3 | * See COPYING for copyright and distribution information. | ||||
4 | */ | ||||
5 | |||||
6 | #include "private-key-storage.hpp" | ||||
7 | |||||
8 | using namespace std; | ||||
9 | |||||
10 | namespace ndn { | ||||
11 | |||||
12 | PrivateKeyStorage::~PrivateKeyStorage() | ||||
13 | { | ||||
14 | } | ||||
15 | |||||
16 | // TODO: Move to subclass. | ||||
17 | Blob | ||||
18 | PrivateKeyStorage::sign(const Blob& blob, const string& keyName, DigestAlgorithm digestAlgorithm) | ||||
19 | { | ||||
20 | return Blob(); | ||||
21 | } | ||||
22 | |||||
23 | } |