/************************************************* * Certificate Store Source File * * (C) 1999-2007 The Botan Project * *************************************************/ #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(); } }