aboutsummaryrefslogtreecommitdiffstats
path: root/src/cert/x509/certstor.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/cert/x509/certstor.h')
-rw-r--r--src/cert/x509/certstor.h82
1 files changed, 82 insertions, 0 deletions
diff --git a/src/cert/x509/certstor.h b/src/cert/x509/certstor.h
new file mode 100644
index 000000000..584259f8c
--- /dev/null
+++ b/src/cert/x509/certstor.h
@@ -0,0 +1,82 @@
+/*
+* 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() {}
+
+ /**
+ * 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;
+
+ bool certificate_known(const X509_Certificate& cert) const;
+
+ /**
+ * Subject DN and (optionally) key identifier
+ */
+ virtual std::vector<X509_Certificate>
+ find_cert_by_subject_and_key_id(
+ const X509_DN& subject_dn,
+ const std::vector<byte>& key_id) const = 0;
+
+ /**
+ * Find CRLs by the DN and key id of the issuer
+ */
+ virtual std::vector<X509_CRL>
+ find_crl_by_issuer_and_key_id(
+ const X509_DN& issuer_dn,
+ const std::vector<byte>& key_id) const = 0;
+ };
+
+/**
+* In Memory Certificate Store
+*/
+class BOTAN_DLL Certificate_Store_In_Memory : public Certificate_Store
+ {
+ public:
+ 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 std::vector<byte>& key_id) const;
+
+ std::vector<X509_CRL> find_crl_by_issuer_and_key_id(
+ const X509_DN& issuer_dn,
+ const std::vector<byte>& key_id) const;
+
+ Certificate_Store_In_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