NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.3: NDN, CCN, CCNx, content centric networks
API Documentation
Main Page
Related Pages
Modules
Namespaces
Classes
Files
File List
File Members
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
35
class
CertContainerInterface
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
60
~
TrustAnchorGroup
();
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
:
84
CertContainerInterface
&
m_certs
;
85
std::set<Name>
m_anchorNames
;
86
87
private
:
88
std::string m_id;
89
};
90
94
class
StaticTrustAnchorGroup
:
public
TrustAnchorGroup
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
120
class
DynamicTrustAnchorGroup
:
public
TrustAnchorGroup
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
ndn::time::steady_clock::TimePoint
time_point TimePoint
Definition:
time.hpp:120
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::security::v2::Certificate
The certificate following the certificate format naming convention.
Definition:
certificate.hpp:81
websocketpp::transport::asio::socket::error::security
Catch-all error for security policy errors that don't fit in other categories.
Definition:
base.hpp:79
ndn::security::v2::TrustAnchorGroup::m_anchorNames
std::set< Name > m_anchorNames
Definition:
trust-anchor-group.hpp:85
ndn::security::v2::TrustAnchorGroup
A group of trust anchors.
Definition:
trust-anchor-group.hpp:51
ndn::security::v2::StaticTrustAnchorGroup
Static trust anchor group.
Definition:
trust-anchor-group.hpp:94
ndn::security::v2::CertContainerInterface::add
virtual void add(Certificate &&cert)=0
certificate.hpp
ndn::security::v2::TrustAnchorGroup::m_certs
CertContainerInterface & m_certs
Definition:
trust-anchor-group.hpp:84
ndn::Name
Represents an absolute name.
Definition:
name.hpp:42
ndn::security::v2::CertContainerInterface
Definition:
trust-anchor-group.hpp:35
ndn::security::v2::TrustAnchorGroup
ndn security v2 TrustAnchorGroup
Definition:
trust-anchor-group.cpp:36
ndn::security::v2::TrustAnchorGroup::getId
const std::string & getId() const
Definition:
trust-anchor-group.hpp:66
ndn::security::v2::DynamicTrustAnchorGroup
Dynamic trust anchor group.
Definition:
trust-anchor-group.hpp:120
ndn::security::v2::CertContainerInterface::~CertContainerInterface
virtual ~CertContainerInterface()=default
ndnSIM
ndn-cxx
src
security
v2
trust-anchor-group.hpp
Generated on Thu Nov 2 2017 03:30:28 for ndnSIM by
1.8.11