command-interest-signer.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #ifndef NDN_SECURITY_COMMAND_INTEREST_SIGNER_HPP
23 #define NDN_SECURITY_COMMAND_INTEREST_SIGNER_HPP
24 
25 #include "v2/key-chain.hpp"
26 
27 namespace ndn {
28 namespace security {
29 
41 class CommandInterestPreparer : noncopyable
42 {
43 public:
45 
51  Name
53 
54 private:
55  time::milliseconds m_lastUsedTimestamp;
56 };
57 
67 {
68 public:
69  explicit
70  CommandInterestSigner(KeyChain& keyChain);
71 
84  Interest
85  makeCommandInterest(const Name& name, const SigningInfo& params = KeyChain::getDefaultSigningInfo());
86 
87 private:
88  KeyChain& m_keyChain;
89 };
90 
91 } // namespace security
92 } // namespace ndn
93 
94 
95 #endif // NDN_SECURITY_COMMAND_INTEREST_SIGNER_HPP
Helper class to create command interests.
Copyright (c) 2013-2017 Regents of the University of California.
Definition: common.hpp:66
Helper class to prepare command interest name.
represents an Interest packet
Definition: interest.hpp:42
Name prepareCommandInterestName(Name name)
Prepare name of the CommandInterest.
Signing parameters passed to KeyChain.
Represents an absolute name.
Definition: name.hpp:42