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