/* * Certificate Store * (C) 1999-2007 Jack Lloyd * * Distributed under the terms of the Botan license */ #include namespace Botan { /* * Search by name */ std::vector Certificate_Store::by_name(const std::string&) const { return std::vector(); } /* * Search by email */ std::vector Certificate_Store::by_email(const std::string&) const { return std::vector(); } /* * Search by X.500 distinguished name */ std::vector Certificate_Store::by_dn(const X509_DN&) const { return std::vector(); } /* * Find any CRLs that might be useful */ std::vector Certificate_Store::get_crls_for(const X509_Certificate&) const { return std::vector(); } }