aboutsummaryrefslogtreecommitdiffstats
path: root/src/certstor.cpp
diff options
context:
space:
mode:
authorlloyd <[email protected]>2006-12-15 00:20:35 +0000
committerlloyd <[email protected]>2006-12-15 00:20:35 +0000
commitabe82f46b251adc496a7b3f232d4fd5fd513449a (patch)
tree6cff8d450d91c882627accd7a7ef02ccfa8a7d0f /src/certstor.cpp
parent595daceb53e6b7c9ed2f621a3b8acf151c432a7f (diff)
Rename certstore.cpp to certstor.cpp, both to match the header and to put
it into an 8.3 format
Diffstat (limited to 'src/certstor.cpp')
-rw-r--r--src/certstor.cpp46
1 files changed, 46 insertions, 0 deletions
diff --git a/src/certstor.cpp b/src/certstor.cpp
new file mode 100644
index 000000000..a300ccbea
--- /dev/null
+++ b/src/certstor.cpp
@@ -0,0 +1,46 @@
+/*************************************************
+* Certificate Store Source File *
+* (C) 1999-2006 The Botan Project *
+*************************************************/
+
+#include <botan/certstor.h>
+
+namespace Botan {
+
+/*************************************************
+* Search by name *
+*************************************************/
+std::vector<X509_Certificate>
+Certificate_Store::by_name(const std::string&) const
+ {
+ return std::vector<X509_Certificate>();
+ }
+
+/*************************************************
+* Search by email *
+*************************************************/
+std::vector<X509_Certificate>
+Certificate_Store::by_email(const std::string&) const
+ {
+ return std::vector<X509_Certificate>();
+ }
+
+/*************************************************
+* Search by X.500 distinguished name *
+*************************************************/
+std::vector<X509_Certificate>
+Certificate_Store::by_dn(const X509_DN&) const
+ {
+ return std::vector<X509_Certificate>();
+ }
+
+/*************************************************
+* Find any CRLs that might be useful *
+*************************************************/
+std::vector<X509_CRL>
+Certificate_Store::get_crls_for(const X509_Certificate&) const
+ {
+ return std::vector<X509_CRL>();
+ }
+
+}