/************************************************* * X.509 Certificate Store Searching Source File * * (C) 1999-2006 The Botan Project * *************************************************/ #include #include #include #include namespace Botan { namespace X509_Store_Search { namespace { /************************************************* * Comparison Function Pointer * *************************************************/ typedef bool (*compare_fn)(const std::string&, const std::string&); /************************************************* * Compare based on case-insensive substrings * *************************************************/ bool substring_match(const std::string& searching_for, const std::string& found) { if(std::search(found.begin(), found.end(), searching_for.begin(), searching_for.end(), Charset::caseless_cmp) != found.end()) return true; return false; } /************************************************* * Compare based on case-insensive match * *************************************************/ bool ignore_case(const std::string& searching_for, const std::string& found) { if(searching_for.size() != found.size()) return false; return std::equal(found.begin(), found.end(), searching_for.begin(), Charset::caseless_cmp); } /************************************************* * Search based on the contents of a DN entry * *************************************************/ class DN_Check : public X509_Store::Search_Func { public: bool match(const X509_Certificate& cert) const { std::vector info = cert.subject_info(dn_entry); for(u32bit j = 0; j != info.size(); ++j) if(compare(info[j], looking_for)) return true; return false; } DN_Check(const std::string& entry, const std::string& target, compare_fn func) : compare(func), dn_entry(entry), looking_for(target) {} private: compare_fn compare; const std::string dn_entry; const std::string looking_for; }; } /************************************************* * Search for a certificate by email address * *************************************************/ std::vector by_email(const X509_Store& store, const std::string& email) { DN_Check search_params("RFC822", email, ignore_case); return store.get_certs(search_params); } /************************************************* * Search for a certificate by CommonName * *************************************************/ std::vector by_name(const X509_Store& store, const std::string& name) { DN_Check search_params("CommonName", name, substring_match); return store.get_certs(search_params); } /************************************************* * Search for a certificate by DNS name * *************************************************/ std::vector by_dns(const X509_Store& store, const std::string& dns) { DN_Check search_params("DNS", dns, ignore_case); return store.get_certs(search_params); } /************************************************* * Search for a certificate by key id * *************************************************/ std::vector by_keyid(const X509_Store& store, u64bit key_id) { class KeyID_Match : public X509_Store::Search_Func { public: bool match(const X509_Certificate& cert) const { std::auto_ptr key(cert.subject_public_key()); return (key->key_id() == key_id); } KeyID_Match(u64bit id) : key_id(id) {} private: u64bit key_id; }; KeyID_Match search_params(key_id); return store.get_certs(search_params); } /************************************************* * Search for a certificate by issuer/serial * *************************************************/ std::vector by_iands(const X509_Store& store, const X509_DN& issuer, const MemoryRegion& serial) { class IandS_Match : public X509_Store::Search_Func { public: bool match(const X509_Certificate& cert) const { if(cert.serial_number() != serial) return false; return (cert.issuer_dn() == issuer); } IandS_Match(const X509_DN& i, const MemoryRegion& s) : issuer(i), serial(s) {} private: X509_DN issuer; MemoryVector serial; }; IandS_Match search_params(issuer, serial); return store.get_certs(search_params); } /************************************************* * Search for a certificate by subject keyid * *************************************************/ std::vector by_SKID(const X509_Store& store, const MemoryRegion& skid) { class SKID_Match : public X509_Store::Search_Func { public: bool match(const X509_Certificate& cert) const { return (cert.subject_key_id() == skid); } SKID_Match(const MemoryRegion& s) : skid(s) {} private: MemoryVector skid; }; SKID_Match search_params(skid); return store.get_certs(search_params); } } }