Vince Lehman | c2acdcb | 2015-04-29 11:14:35 -0500 | [diff] [blame^] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
| 3 | * Copyright (c) 2014-2015, The University of Memphis, |
| 4 | * 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> |
| 29 | #include <ndn-cxx/security/identity-certificate.hpp> |
| 30 | |
| 31 | namespace nlsr { |
| 32 | namespace security { |
| 33 | |
| 34 | class CertificateStore |
| 35 | { |
| 36 | public: |
| 37 | void |
| 38 | insert(shared_ptr<ndn::IdentityCertificate> certificate) |
| 39 | { |
| 40 | if (certificate != nullptr) { |
| 41 | // Key is cert name without version |
| 42 | m_certificates[certificate->getName().getPrefix(-1)] = certificate; |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | shared_ptr<const ndn::IdentityCertificate> |
| 47 | find(const ndn::Name& certificateNameWithoutVersion) const |
| 48 | { |
| 49 | CertMap::const_iterator it = m_certificates.find(certificateNameWithoutVersion); |
| 50 | |
| 51 | if (it != m_certificates.end()) { |
| 52 | return it->second; |
| 53 | } |
| 54 | |
| 55 | return nullptr; |
| 56 | } |
| 57 | |
| 58 | PUBLIC_WITH_TESTS_ELSE_PRIVATE: |
| 59 | void |
| 60 | clear() |
| 61 | { |
| 62 | m_certificates.clear(); |
| 63 | } |
| 64 | |
| 65 | private: |
| 66 | typedef std::map<ndn::Name, shared_ptr<ndn::IdentityCertificate>> CertMap; |
| 67 | CertMap m_certificates; |
| 68 | }; |
| 69 | |
| 70 | } // namespace security |
| 71 | } // namespace nlsr |
| 72 | |
| 73 | #endif // NLSR_CERTIFICATE_STORE_HPP |