NS-3 based Named Data Networking (NDN) simulator
ndnSIM 2.5: NDN, CCN, CCNx, content centric networks
API Documentation
certificate-storage.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_CERTIFICATE_STORAGE_HPP
23 #define NDN_CXX_SECURITY_CERTIFICATE_STORAGE_HPP
24 
28 
29 namespace ndn {
30 namespace security {
31 inline namespace v2 {
32 
36 class CertificateStorage : noncopyable
37 {
38 public:
40 
48  const Certificate*
49  findTrustedCert(const Interest& interestForCert) const;
50 
55  bool
56  isCertKnown(const Name& certPrefix) const;
57 
64  void
66 
71  getTrustAnchors() const;
72 
76  const CertificateCache&
77  getVerifiedCertCache() const;
78 
82  const CertificateCache&
83  getUnverifiedCertCache() const;
84 
85 protected:
94  void
95  loadAnchor(const std::string& groupId, Certificate&& cert);
96 
108  void
109  loadAnchor(const std::string& groupId, const std::string& certfilePath,
110  time::nanoseconds refreshPeriod, bool isDir = false);
111 
115  void
116  resetAnchors();
117 
124  void
126 
130  void
132 
133 protected:
137 };
138 
139 } // inline namespace v2
140 } // namespace security
141 } // namespace ndn
142 
143 #endif // NDN_CXX_SECURITY_CERTIFICATE_STORAGE_HPP
void loadAnchor(const std::string &groupId, Certificate &&cert)
load static trust anchor.
Copyright (c) 2011-2015 Regents of the University of California.
Represents an NDN certificate following the version 2.0 format.
Definition: certificate.hpp:60
void cacheUnverifiedCert(Certificate &&cert)
Cache unverified certificate for a period of time (5 minutes)
Represents an Interest packet.
Definition: interest.hpp:48
bool isCertKnown(const Name &certPrefix) const
Check if certificate exists in verified, unverified cache, or in the set of trust anchors...
const Certificate * findTrustedCert(const Interest &interestForCert) const
Find a trusted certificate in trust anchor container or in verified cache.
Represents a container for verified certificates.
const CertificateCache & getVerifiedCertCache() const
represents a container for trust anchors.
void resetVerifiedCerts()
Remove any cached verified certificates.
const CertificateCache & getUnverifiedCertCache() const
Storage for trusted anchors, verified certificate cache, and unverified certificate cache...
void cacheVerifiedCert(Certificate &&cert)
Cache verified certificate a period of time (1 hour)
void resetAnchors()
remove any previously loaded static or dynamic trust anchor
Represents an absolute name.
Definition: name.hpp:41
const TrustAnchorContainer & getTrustAnchors() const
boost::chrono::nanoseconds nanoseconds
Definition: time.hpp:50