NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
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
71 
84  Interest
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) 2011-2015 Regents of the University of California.
The interface of signing key management.
Definition: key-chain.hpp:46
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.
static const SigningInfo & getDefaultSigningInfo()
Definition: key-chain.cpp:143
Interest makeCommandInterest(const Name &name, const SigningInfo &params=KeyChain::getDefaultSigningInfo())
Create CommandInterest.
Represents an absolute name.
Definition: name.hpp:42