ndn::security::v2::CertificateCache Class Reference

Represents a container for verified certificates. More...

#include <certificate-cache.hpp>

Inheritance diagram for ndn::security::v2::CertificateCache:
[legend]
Collaboration diagram for ndn::security::v2::CertificateCache:
[legend]

Public Member Functions

 CertificateCache (const time::nanoseconds &maxLifetime=getDefaultLifetime())
 Create an object for certificate cache. More...
 
void insert (const Certificate &cert)
 Insert certificate into cache. More...
 
const Certificatefind (const Name &certPrefix) const
 Get certificate given key name. More...
 
const Certificatefind (const Interest &interest) const
 Find certificate given interest. More...
 

Static Public Member Functions

static const time::nanoseconds & getDefaultLifetime ()
 

Detailed Description

Represents a container for verified certificates.

A certificate is removed no later than its NotAfter time, or maxLifetime after it has been added to the cache.

Definition at line 43 of file v2/certificate-cache.hpp.

Constructor & Destructor Documentation

ndn::security::v2::CertificateCache::CertificateCache ( const time::nanoseconds &  maxLifetime = getDefaultLifetime())
explicit

Create an object for certificate cache.

Parameters
maxLifetimethe maximum time that certificates could live inside cache (default: 1 hour)

Definition at line 38 of file certificate-cache.cpp.

Member Function Documentation

const Certificate * ndn::security::v2::CertificateCache::find ( const Name certPrefix) const

Get certificate given key name.

Parameters
certPrefixCertificate prefix for searching the certificate.
Returns
The found certificate, nullptr if not found.
Note
The returned value may be invalidated after next call to one of find methods.

Definition at line 62 of file certificate-cache.cpp.

const Certificate * ndn::security::v2::CertificateCache::find ( const Interest interest) const

Find certificate given interest.

Parameters
interestThe input interest packet.
Returns
The found certificate that matches the interest, nullptr if not found.
Note
ChildSelector is not supported.
The returned value may be invalidated after next call to one of find methods.

Definition at line 75 of file certificate-cache.cpp.

const time::nanoseconds & ndn::security::v2::CertificateCache::getDefaultLifetime ( )
static

Definition at line 32 of file certificate-cache.cpp.

void ndn::security::v2::CertificateCache::insert ( const Certificate cert)

Insert certificate into cache.

The inserted certificate will be removed no later than its NotAfter time, or maxLifetime defined during cache construction.

Parameters
certthe certificate packet.

Definition at line 46 of file certificate-cache.cpp.