blob: f0cc4081c5b1175d3ba0448ea322bb72ad7791c5 [file] [log] [blame]
Yingdi Yub8f8b342015-04-27 11:06:42 -07001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev2fa59392016-07-29 17:24:23 -07003 * Copyright (c) 2013-2016 Regents of the University of California.
Yingdi Yub8f8b342015-04-27 11:06:42 -07004 *
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_CERTIFICATE_CONTAINER_HPP
23#define NDN_SECURITY_CERTIFICATE_CONTAINER_HPP
24
25#include <set>
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070026#include "v1/identity-certificate.hpp"
Yingdi Yub8f8b342015-04-27 11:06:42 -070027
28namespace ndn {
29namespace security {
30
31class PibImpl;
32
33/// @brief A handler to search or enumerate certificates of a key.
34class CertificateContainer
35{
36public:
37 class const_iterator
38 {
39 public:
40 friend class CertificateContainer;
41
42 public:
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070043 v1::IdentityCertificate
Yingdi Yub8f8b342015-04-27 11:06:42 -070044 operator*();
45
46 const_iterator&
47 operator++();
48
49 const_iterator
50 operator++(int);
51
52 bool
53 operator==(const const_iterator& other);
54
55 bool
56 operator!=(const const_iterator& other);
57
58 private:
59 const_iterator(std::set<Name>::const_iterator it, shared_ptr<PibImpl> impl);
60
61 private:
62 std::set<Name>::const_iterator m_it;
63 shared_ptr<PibImpl> m_impl;
64 };
65
66 typedef const_iterator iterator;
67
68public:
69 CertificateContainer();
70
71 CertificateContainer(std::set<Name>&& certNames, shared_ptr<PibImpl> impl);
72
73 const_iterator
74 begin() const;
75
76 const_iterator
77 end() const;
78
79 const_iterator
80 find(const Name& certName) const;
81
82 size_t
83 size() const;
84
85private:
86 std::set<Name> m_certNames;
87 shared_ptr<PibImpl> m_impl;
88};
89
90} // namespace security
91} // namespace ndn
92
93#endif // NDN_SECURITY_CERTIFICATE_CONTAINER_HPP