blob: 4f2d0aa9a67d369465c0650074297afd6193f4c0 [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#include "private-key-storage.hpp"
using namespace std;
namespace ndn {
PrivateKeyStorage::~PrivateKeyStorage()
{
}
// TODO: Move to subclass.
Blob
PrivateKeyStorage::sign(const Blob& blob, const string& keyName, DigestAlgorithm digestAlgorithm)
{
return Blob();
}
}