/usr/include/botan-1.10/botan/certstor.h is in libbotan1.10-dev 1.10.16-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 | /*
* Certificate Store
* (C) 1999-2010 Jack Lloyd
*
* Distributed under the terms of the Botan license
*/
#ifndef BOTAN_CERT_STORE_H__
#define BOTAN_CERT_STORE_H__
#include <botan/x509cert.h>
#include <botan/x509_crl.h>
namespace Botan {
/**
* Certificate Store Interface
*/
class BOTAN_DLL Certificate_Store
{
public:
virtual ~Certificate_Store() {}
virtual Certificate_Store* clone() const = 0;
/**
* Add a certificate; this may fail if the store is write-only
*/
virtual void add_certificate(const X509_Certificate& cert) = 0;
/**
* Add a CRL; this may fail if the store is write-only
*/
virtual void add_crl(const X509_CRL& crl) = 0;
/**
* Subject DN and (optionally) key identifier
*/
virtual std::vector<X509_Certificate>
find_cert_by_subject_and_key_id(
const X509_DN& subject_dn,
const MemoryRegion<byte>& key_id) const = 0;
/**
* Find CRLs by the DN and key id of the issuer
*/
virtual std::vector<X509_CRL>
find_crl_by_subject_and_key_id(
const X509_DN& issuer_dn,
const MemoryRegion<byte>& key_id) const = 0;
};
/**
* In Memory Certificate Store
*/
class BOTAN_DLL Certificate_Store_Memory : public Certificate_Store
{
public:
Certificate_Store* clone() const;
void add_certificate(const X509_Certificate& cert);
void add_crl(const X509_CRL& crl);
std::vector<X509_Certificate> find_cert_by_subject_and_key_id(
const X509_DN& subject_dn,
const MemoryRegion<byte>& key_id) const;
std::vector<X509_CRL> find_crl_by_subject_and_key_id(
const X509_DN& issuer_dn,
const MemoryRegion<byte>& key_id) const;
Certificate_Store_Memory() {}
private:
// TODO: Add indexing on the DN and key id to avoid linear search?
std::vector<X509_Certificate> certs;
std::vector<X509_CRL> crls;
};
// TODO: file-backed store
}
#endif
|