NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
validator-config.cpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2018 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 
24 
25 namespace ndn {
26 namespace security {
27 
28 ValidatorConfig::ValidatorConfig(std::unique_ptr<v2::CertificateFetcher> fetcher, const Options& options)
29  : v2::Validator(make_unique<v2::ValidationPolicyCommandInterest>(make_unique<v2::ValidationPolicyConfig>(),
30  options),
31  std::move(fetcher))
32  , m_policyConfig(static_cast<v2::ValidationPolicyConfig&>(getPolicy().getInnerPolicy()))
33 {
34 }
35 
37  : ValidatorConfig(make_unique<v2::CertificateFetcherFromNetwork>(face), options)
38 {
39 }
40 
41 void
42 ValidatorConfig::load(const std::string& filename)
43 {
44  m_policyConfig.load(filename);
45 }
46 
47 void
48 ValidatorConfig::load(const std::string& input, const std::string& filename)
49 {
50  m_policyConfig.load(input, filename);
51 }
52 
53 void
54 ValidatorConfig::load(std::istream& input, const std::string& filename)
55 {
56  m_policyConfig.load(input, filename);
57 }
58 
59 void
61  const std::string& filename)
62 {
63  m_policyConfig.load(configSection, filename);
64 }
65 
66 } // namespace security
67 } // namespace ndn
ndn::security::v2::Validator
ndn security v2 Validator
Definition: validator.cpp:32
nonstd::optional_lite::std11::move
T & move(T &t)
Definition: optional.hpp:421
ndn::Face
Provide a communication channel with local or remote NDN forwarder.
Definition: face.hpp:90
ndn::security::ValidatorConfig::load
void load(const std::string &filename)
Definition: validator-config.cpp:42
validator-config.hpp
ndn::security::ValidatorConfig
Helper for validator that uses CommandInterest + Config policy and NetworkFetcher.
Definition: validator-config.hpp:36
ndn::security::ValidatorConfig::ValidatorConfig
ValidatorConfig(std::unique_ptr< v2::CertificateFetcher > fetcher, const Options &options=Options())
Definition: validator-config.cpp:28
ndn::security::v2::ValidationPolicyCommandInterest::Options
Definition: validation-policy-command-interest.hpp:46
ndn::security::v2::validator_config::ConfigSection
boost::property_tree::ptree ConfigSection
Definition: common.hpp:36
ndn
Copyright (c) 2011-2015 Regents of the University of California.
Definition: ndn-strategy-choice-helper.hpp:34
certificate-fetcher-from-network.hpp