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; -*- */
2
/*
3
* Copyright (c) 2013-2021 Regents of the University of California.
4
*
5
* This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
6
*
7
* ndn-cxx library is free software: you can redistribute it and/or modify it under the
8
* terms of the GNU Lesser General Public License as published by the Free Software
9
* Foundation, either version 3 of the License, or (at your option) any later version.
10
*
11
* ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12
* WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13
* PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14
*
15
* You should have received copies of the GNU General Public License and GNU Lesser
16
* General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17
* <http://www.gnu.org/licenses/>.
18
*
19
* See AUTHORS.md for complete list of ndn-cxx authors and contributors.
20
*/
21
22
#ifndef NDN_CXX_SECURITY_TRUST_ANCHOR_GROUP_HPP
23
#define NDN_CXX_SECURITY_TRUST_ANCHOR_GROUP_HPP
24
25
#include "
ndn-cxx/data.hpp
"
26
#include "
ndn-cxx/security/certificate.hpp
"
27
28
#include <boost/filesystem/path.hpp>
29
#include <set>
30
31
namespace
ndn
{
32
namespace
security
{
33
inline
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
}
// inline namespace v2
167
}
// namespace security
168
}
// namespace ndn
169
170
#endif // NDN_CXX_SECURITY_TRUST_ANCHOR_GROUP_HPP
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition:
ndn-strategy-choice-helper.hpp:34
ndn::security::v2::Certificate
Represents an NDN certificate following the version 2.0 format.
Definition:
certificate.hpp:60
ndn::security::v2::TrustAnchorGroup
ndn security TrustAnchorGroup
Definition:
trust-anchor-group.cpp:38
ndn::security::v2::TrustAnchorGroup::getId
const std::string & getId() const
Definition:
trust-anchor-group.hpp:66
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
data.hpp
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:41
ndn::security::v2::CertContainerInterface
Definition:
trust-anchor-group.hpp:35
ndn::security
Definition:
dummy-keychain.cpp:28
nonstd::span_lite::size
span_constexpr std::size_t size(span< T, Extent > const &spn)
Definition:
span-lite.hpp:1535
ndn::security::v2::DynamicTrustAnchorGroup
Dynamic trust anchor group.
Definition:
trust-anchor-group.hpp:120
ndn::security::v2::CertContainerInterface::~CertContainerInterface
virtual ~CertContainerInterface()=default
ndn::time::nanoseconds
boost::chrono::nanoseconds nanoseconds
Definition:
time.hpp:50
ndn::time::steady_clock::TimePoint
time_point TimePoint
Definition:
time.hpp:233
ndnSIM
ndn-cxx
ndn-cxx
security
trust-anchor-group.hpp
Generated on Fri May 6 2022 12:34:13 for ndnSIM by
1.8.13