summaryrefslogtreecommitdiffstats
path: root/old/botan/build/botan/certstor.h
diff options
context:
space:
mode:
Diffstat (limited to 'old/botan/build/botan/certstor.h')
-rw-r--r--old/botan/build/botan/certstor.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/old/botan/build/botan/certstor.h b/old/botan/build/botan/certstor.h
new file mode 100644
index 0000000..d5004e3
--- /dev/null
+++ b/old/botan/build/botan/certstor.h
@@ -0,0 +1,39 @@
+/*
+* Certificate Store
+* (C) 1999-2007 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 std::vector<X509_Certificate>
+ by_SKID(const MemoryRegion<byte>&) const = 0;
+
+ virtual std::vector<X509_Certificate> by_name(const std::string&) const;
+ virtual std::vector<X509_Certificate> by_email(const std::string&) const;
+ virtual std::vector<X509_Certificate> by_dn(const X509_DN&) const;
+
+ virtual std::vector<X509_CRL>
+ get_crls_for(const X509_Certificate&) const;
+
+ virtual Certificate_Store* clone() const = 0;
+
+ virtual ~Certificate_Store() {}
+ };
+
+}
+
+#endif