blob: 4b84df6698c7ae510031f121685072029c3ce22d [file] [log] [blame]
Vince Lehmanc2acdcb2015-04-29 11:14:35 -05001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Nick Gordonc6a85222017-01-03 16:54:34 -06003 * Copyright (c) 2014-2017, The University of Memphis,
Vince Lehmanc2acdcb2015-04-29 11:14:35 -05004 * Regents of the University of California,
5 * Arizona Board of Regents.
6 *
7 * This file is part of NLSR (Named-data Link State Routing).
8 * See AUTHORS.md for complete list of NLSR authors and contributors.
9 *
10 * NLSR is free software: you can redistribute it and/or modify it under the terms
11 * of the GNU General Public License as published by the Free Software Foundation,
12 * either version 3 of the License, or (at your option) any later version.
13 *
14 * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
15 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16 * PURPOSE. See the GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License along with
19 * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
20 **/
21
22#ifndef NLSR_CERTIFICATE_STORE_HPP
23#define NLSR_CERTIFICATE_STORE_HPP
24
25#include "../common.hpp"
26#include "../test-access-control.hpp"
27
28#include <ndn-cxx/interest.hpp>
Alexander Afanasyev4c2bb362017-03-14 12:29:19 -070029#include <ndn-cxx/security/v1/identity-certificate.hpp>
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050030
31namespace nlsr {
32namespace security {
33
Nick Gordond0a7df32017-05-30 16:44:34 -050034/*! \brief Store certificates for names
35 *
36 * Stores certificates that this router claims to be authoritative
37 * for. That is, this stores only the certificates that we will reply
38 * to KEY interests with, e.g. when other routers are verifying data
39 * we have sent.
40 */
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050041class CertificateStore
42{
43public:
44 void
dmcoomes9f936662017-03-02 10:33:09 -060045 insert(std::shared_ptr<ndn::IdentityCertificate> certificate)
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050046 {
47 if (certificate != nullptr) {
48 // Key is cert name without version
49 m_certificates[certificate->getName().getPrefix(-1)] = certificate;
50 }
51 }
52
dmcoomes9f936662017-03-02 10:33:09 -060053 std::shared_ptr<const ndn::IdentityCertificate>
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050054 find(const ndn::Name& certificateNameWithoutVersion) const
55 {
56 CertMap::const_iterator it = m_certificates.find(certificateNameWithoutVersion);
57
58 if (it != m_certificates.end()) {
59 return it->second;
60 }
61
62 return nullptr;
63 }
64
65PUBLIC_WITH_TESTS_ELSE_PRIVATE:
66 void
67 clear()
68 {
69 m_certificates.clear();
70 }
71
72private:
dmcoomes9f936662017-03-02 10:33:09 -060073 typedef std::map<ndn::Name, std::shared_ptr<ndn::IdentityCertificate>> CertMap;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050074 CertMap m_certificates;
75};
76
77} // namespace security
78} // namespace nlsr
79
80#endif // NLSR_CERTIFICATE_STORE_HPP