blob: cef43e1c957e9fb70344db7b8432bd0bc94561c0 [file] [log] [blame]
Jeff Thompson47c93cf2013-08-09 00:38:48 -07001/**
2 * @author: Jeff Thompson
3 * See COPYING for copyright and distribution information.
4 */
5
6#ifndef NDN_KEY_CHAIN_HPP
7#define NDN_KEY_CHAIN_HPP
8
9#include "data.hpp";
10
11namespace ndn {
12
13class KeyChain {
14public:
15 /**
16 * In data, set the signed info key to the default public key and set the signature using the default private key.
17 * @param data The Data object to sign and set the signature.
18 */
19 static void defaultSign(Data &data);
20
21};
22
23}
24
25#endif