diff options
author | lloyd <[email protected]> | 2006-09-10 03:37:57 +0000 |
---|---|---|
committer | lloyd <[email protected]> | 2006-09-10 03:37:57 +0000 |
commit | 04ca56c95e152edf1f2a49bc1a4be5b64a5774a7 (patch) | |
tree | bb0ff73976daf32a5f6e51869d4c6551bfc375cf /include/x509stor.h | |
parent | 3af61dd588df052eb100e0c581860edfc1cb09c3 (diff) |
Completely rewrite how the default X509_Store searches are performed,
exposing the actual search objects to the user rather than wrapping them
in functions. Primarily this is to avoid the Visual Studio bug alluded to
in the last commit.
Diffstat (limited to 'include/x509stor.h')
-rw-r--r-- | include/x509stor.h | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/include/x509stor.h b/include/x509stor.h index 9cb747a22..0ac5456ee 100644 --- a/include/x509stor.h +++ b/include/x509stor.h @@ -129,21 +129,6 @@ class X509_Store mutable bool revoked_info_valid; }; -namespace X509_Store_Search { - -/************************************************* -* Methods to search through a X509_Store * -*************************************************/ -std::vector<X509_Certificate> by_email(const X509_Store&, const std::string&); -std::vector<X509_Certificate> by_name(const X509_Store&, const std::string&); -std::vector<X509_Certificate> by_dns(const X509_Store&, const std::string&); -std::vector<X509_Certificate> by_iands(const X509_Store&, const X509_DN&, - const MemoryRegion<byte>&); -std::vector<X509_Certificate> by_SKID(const X509_Store&, - const MemoryRegion<byte>&); - -} - } #endif |