blob: 22590641a8277d81253806429fc6c047c6248f23 [file] [log] [blame]
/**
* @author: Jeff Thompson
* See COPYING for copyright and distribution information.
*/
#ifndef NDN_KEY_CHAIN_HPP
#define NDN_KEY_CHAIN_HPP
#include "data.hpp";
namespace ndn {
class KeyChain {
public:
/**
* In data, set the signed info publisher public key digest and key locator key to the default public key and set the
* signature using the default private key.
* Note: the caller must make sure the timestamp is correct with data.getSignedInfo().setTimestampMilliseconds.
* @param data The Data object to sign and set the signature.
*/
static void defaultSign(Data &data);
};
}
#endif