blob: 42f3b88f67d6c3bc6dca245fbcdcb0b0a12e9f01 [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
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080032/**
33 * @brief Interface for the cache of validated certificates
34 */
35class CertificateCache : noncopyable
Yingdi Yu7640cb32014-01-29 20:00:50 -080036{
37public:
38 virtual
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070039 ~CertificateCache()
40 {
41 }
Yingdi Yu7640cb32014-01-29 20:00:50 -080042
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070043 virtual void
44 insertCertificate(shared_ptr<const IdentityCertificate> certificate) = 0;
45
46 virtual shared_ptr<const IdentityCertificate>
Yingdi Yu7640cb32014-01-29 20:00:50 -080047 getCertificate(const Name& certificateNameWithoutVersion) = 0;
Yingdi Yu58f33712014-04-16 16:57:47 -070048
49 virtual void
50 reset() = 0;
51
52 virtual size_t
53 getSize() = 0;
54
55 bool
56 isEmpty()
57 {
58 return (getSize() == 0);
59 }
Yingdi Yu7640cb32014-01-29 20:00:50 -080060};
61
Yingdi Yufc40d872014-02-18 12:56:04 -080062} // namespace ndn
Yingdi Yu7640cb32014-01-29 20:00:50 -080063
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080064#endif // NDN_SECURITY_CERTIFICATE_CACHE_HPP