blob: 0445318cb24c99b073c9d440164109adacc7a084 [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>
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050029#include <ndn-cxx/security/v2/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
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050045 insert(const ndn::security::v2::Certificate& certificate)
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050046 {
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050047 m_certificates[certificate.getKeyName()] = certificate;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050048 }
49
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050050 const ndn::security::v2::Certificate*
51 find(const ndn::Name keyName)
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050052 {
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050053 CertMap::iterator it = m_certificates.find(keyName);
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050054
55 if (it != m_certificates.end()) {
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050056 return &it->second;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050057 }
58
59 return nullptr;
60 }
61
62PUBLIC_WITH_TESTS_ELSE_PRIVATE:
63 void
64 clear()
65 {
66 m_certificates.clear();
67 }
68
69private:
Muktadir Chowdhuryf04f9892017-08-20 20:42:56 -050070 typedef std::map<ndn::Name, ndn::security::v2::Certificate> CertMap;
Vince Lehmanc2acdcb2015-04-29 11:14:35 -050071 CertMap m_certificates;
72};
73
74} // namespace security
75} // namespace nlsr
76
77#endif // NLSR_CERTIFICATE_STORE_HPP