NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
trust-anchor-group.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
22 #ifndef NDN_SECURITY_V2_TRUST_ANCHOR_GROUP_HPP
23 #define NDN_SECURITY_V2_TRUST_ANCHOR_GROUP_HPP
24 
25 #include "../../data.hpp"
26 #include "certificate.hpp"
27 
28 #include <boost/filesystem/path.hpp>
29 #include <set>
30 
31 namespace ndn {
32 namespace security {
33 namespace v2 {
34 
36 {
37 public:
38  virtual
39  ~CertContainerInterface() = default;
40 
41  virtual void
42  add(Certificate&& cert) = 0;
43 
44  virtual void
45  remove(const Name& certName) = 0;
46 };
47 
51 class TrustAnchorGroup : noncopyable
52 {
53 public:
57  TrustAnchorGroup(CertContainerInterface& certContainer, const std::string& id);
58 
59  virtual
61 
65  const std::string&
66  getId() const
67  {
68  return m_id;
69  }
70 
74  size_t
75  size() const;
76 
80  virtual void
81  refresh();
82 
83 protected:
85  std::set<Name> m_anchorNames;
86 
87 private:
88  std::string m_id;
89 };
90 
95 {
96 public:
102  StaticTrustAnchorGroup(CertContainerInterface& certContainer, const std::string& id);
103 
107  void
108  add(Certificate&& cert);
109 
113  void
114  remove(const Name& certName);
115 };
116 
121 {
122 public:
152  DynamicTrustAnchorGroup(CertContainerInterface& certContainer, const std::string& id,
153  const boost::filesystem::path& path, time::nanoseconds refreshPeriod,
154  bool isDir = false);
155 
156  void
157  refresh() override;
158 
159 private:
160  bool m_isDir;
161  boost::filesystem::path m_path;
162  time::nanoseconds m_refreshPeriod;
163  time::steady_clock::TimePoint m_expireTime;
164 };
165 
166 } // namespace v2
167 } // namespace security
168 } // namespace ndn
169 
170 #endif // NDN_SECURITY_V2_TRUST_ANCHOR_GROUP_HPP
TrustAnchorGroup(CertContainerInterface &certContainer, const std::string &id)
Create an anchor group.
time_point TimePoint
Definition: time.hpp:226
Copyright (c) 2011-2015 Regents of the University of California.
The certificate following the certificate format naming convention.
Definition: certificate.hpp:81
virtual void refresh()
Request certificate refresh.
const std::string & getId() const
void refresh() override
Request certificate refresh.
virtual void add(Certificate &&cert)=0
Represents an absolute name.
Definition: name.hpp:42
void add(Certificate &&cert)
Load static anchor cert.
DynamicTrustAnchorGroup(CertContainerInterface &certContainer, const std::string &id, const boost::filesystem::path &path, time::nanoseconds refreshPeriod, bool isDir=false)
Create a dynamic trust anchor group.
StaticTrustAnchorGroup(CertContainerInterface &certContainer, const std::string &id)
Create a static trust anchor group.