blob: 31296a06ea9ab8e860965e267e41546079ec5510 [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Yingdi Yu7640cb32014-01-29 20:00:50 -08002/**
Alexander Afanasyevc169a812014-05-20 20:37:29 -04003 * Copyright (c) 2013-2014 Regents of the University of California.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * 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.
Alexander Afanasyevdfa52c42014-04-24 21:10:11 -070020 *
21 * @author Yingdi Yu <http://irl.cs.ucla.edu/~yingdi/>
Yingdi Yu7640cb32014-01-29 20:00:50 -080022 */
23
Yingdi Yufc40d872014-02-18 12:56:04 -080024#ifndef NDN_SECURITY_CERTIFICATE_CACHE_HPP
25#define NDN_SECURITY_CERTIFICATE_CACHE_HPP
Yingdi Yu7640cb32014-01-29 20:00:50 -080026
27#include "../name.hpp"
28#include "identity-certificate.hpp"
29
Yingdi Yufc40d872014-02-18 12:56:04 -080030namespace ndn {
Yingdi Yu7640cb32014-01-29 20:00:50 -080031
32class CertificateCache
33{
34public:
35 virtual
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070036 ~CertificateCache()
37 {
38 }
Yingdi Yu7640cb32014-01-29 20:00:50 -080039
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070040 virtual void
41 insertCertificate(shared_ptr<const IdentityCertificate> certificate) = 0;
42
43 virtual shared_ptr<const IdentityCertificate>
Yingdi Yu7640cb32014-01-29 20:00:50 -080044 getCertificate(const Name& certificateNameWithoutVersion) = 0;
Yingdi Yu58f33712014-04-16 16:57:47 -070045
46 virtual void
47 reset() = 0;
48
49 virtual size_t
50 getSize() = 0;
51
52 bool
53 isEmpty()
54 {
55 return (getSize() == 0);
56 }
Yingdi Yu7640cb32014-01-29 20:00:50 -080057};
58
Yingdi Yufc40d872014-02-18 12:56:04 -080059} // namespace ndn
Yingdi Yu7640cb32014-01-29 20:00:50 -080060
Yingdi Yufc40d872014-02-18 12:56:04 -080061#endif //NDN_SECURITY_CERTIFICATE_CACHE_HPP