blob: fa6cb79d918f8e92c76c1f2020a0475f6020f64a [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 Afanasyev2fa59392016-07-29 17:24:23 -07003 * Copyright (c) 2013-2016 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"
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070028#include "v1/identity-certificate.hpp"
Yingdi Yu7640cb32014-01-29 20:00:50 -080029
Yingdi Yufc40d872014-02-18 12:56:04 -080030namespace ndn {
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070031namespace security {
Yingdi Yu7640cb32014-01-29 20:00:50 -080032
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080033/**
34 * @brief Interface for the cache of validated certificates
35 */
36class CertificateCache : noncopyable
Yingdi Yu7640cb32014-01-29 20:00:50 -080037{
38public:
39 virtual
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070040 ~CertificateCache()
41 {
42 }
Yingdi Yu7640cb32014-01-29 20:00:50 -080043
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070044 virtual void
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070045 insertCertificate(shared_ptr<const v1::IdentityCertificate> certificate) = 0;
Yingdi Yu4b8c6a22014-04-15 23:00:54 -070046
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070047 virtual shared_ptr<const v1::IdentityCertificate>
Yingdi Yu7640cb32014-01-29 20:00:50 -080048 getCertificate(const Name& certificateNameWithoutVersion) = 0;
Yingdi Yu58f33712014-04-16 16:57:47 -070049
50 virtual void
51 reset() = 0;
52
53 virtual size_t
54 getSize() = 0;
55
56 bool
57 isEmpty()
58 {
59 return (getSize() == 0);
60 }
Yingdi Yu7640cb32014-01-29 20:00:50 -080061};
62
Alexander Afanasyev2fa59392016-07-29 17:24:23 -070063} // namespace security
64
65using security::CertificateCache;
66
Yingdi Yufc40d872014-02-18 12:56:04 -080067} // namespace ndn
Yingdi Yu7640cb32014-01-29 20:00:50 -080068
Alexander Afanasyeveabffdf2014-11-13 13:50:33 -080069#endif // NDN_SECURITY_CERTIFICATE_CACHE_HPP