Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 1 | /** |
| 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 | |
| 11 | namespace ndn { |
| 12 | |
| 13 | class KeyChain { |
| 14 | public: |
| 15 | /** |
Jeff Thompson | 3df8137 | 2013-08-09 12:02:37 -0700 | [diff] [blame^] | 16 | * In data, set the signed info publisher public key digest and key locator key to the default public key and set the |
| 17 | * signature using the default private key. |
| 18 | * Note: the caller must make sure the timestamp is correct with data.getSignedInfo().setTimestampMilliseconds. |
Jeff Thompson | 47c93cf | 2013-08-09 00:38:48 -0700 | [diff] [blame] | 19 | * @param data The Data object to sign and set the signature. |
| 20 | */ |
| 21 | static void defaultSign(Data &data); |
| 22 | |
| 23 | }; |
| 24 | |
| 25 | } |
| 26 | |
| 27 | #endif |