NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
validator-config.hpp
Go to the documentation of this file.
1 /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2 /*
3  * Copyright (c) 2013-2017 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_SECURITY_VALIDATOR_CONFIG_HPP
23 #define NDN_SECURITY_VALIDATOR_CONFIG_HPP
24 
25 #include "v2/validator.hpp"
28 
29 namespace ndn {
30 namespace security {
31 
36 {
37 public:
40 
41  explicit
42  ValidatorConfig(std::unique_ptr<v2::CertificateFetcher> fetcher, const Options& options = Options());
43 
44  explicit
45  ValidatorConfig(Face& face, const Options& options = Options());
46 
47 public: // helpers for ValidationPolicyConfig
48  void
49  load(const std::string& filename);
50 
51  void
52  load(const std::string& input, const std::string& filename);
53 
54  void
55  load(std::istream& input, const std::string& filename);
56 
57  void
58  load(const v2::validator_config::ConfigSection& configSection,
59  const std::string& filename);
60 
62  v2::ValidationPolicyConfig& m_policyConfig;
63 };
64 
65 } // namespace security
66 
68 
69 } // namespace ndn
70 
71 #endif // NDN_SECURITY_VALIDATOR_CONFIG_HPP
The validator which can be set up via a configuration file.
Copyright (c) 2011-2015 Regents of the University of California.
void load(const std::string &filename)
#define NDN_CXX_PUBLIC_WITH_TESTS_ELSE_PRIVATE
Definition: common.hpp:43
Helper for validator that uses CommandInterest + Config policy and NetworkFetcher.
ValidatorConfig(std::unique_ptr< v2::CertificateFetcher > fetcher, const Options &options=Options())
Provide a communication channel with local or remote NDN forwarder.
Definition: face.hpp:90
v2::ValidationPolicyCommandInterest::Options Options
Validator(unique_ptr< ValidationPolicy > policy, unique_ptr< CertificateFetcher > certFetcher)
Validator constructor.
Definition: validator.cpp:37
boost::property_tree::ptree ConfigSection
Definition: common.hpp:35
Interface for validating data and interest packets.
Definition: validator.hpp:61