aboutsummaryrefslogtreecommitdiffstats
path: root/src/certstor.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/certstor.cpp')
-rw-r--r--src/certstor.cpp46
1 files changed, 0 insertions, 46 deletions
diff --git a/src/certstor.cpp b/src/certstor.cpp
deleted file mode 100644
index 2b51590ad..000000000
--- a/src/certstor.cpp
+++ /dev/null
@@ -1,46 +0,0 @@
-/*************************************************
-* Certificate Store Source File *
-* (C) 1999-2007 Jack Lloyd *
-*************************************************/
-
-#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>();
- }
-
-}