X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fcertificates.h;h=ebc4cc53560d42a7e6916a1a511ad4ec8028fab1;hb=595d4fbfee788edfad7f9f8dfe7e76ee634c1a94;hp=8ae562c91543e882d85c40163032b39b67a68812;hpb=3d77daab7639c06d1cdbeb852559fc4be5671819;p=libdcp.git diff --git a/src/certificates.h b/src/certificates.h index 8ae562c9..ebc4cc53 100644 --- a/src/certificates.h +++ b/src/certificates.h @@ -26,7 +26,6 @@ #undef X509_NAME #include -#include #include #include #include @@ -42,16 +41,16 @@ namespace dcp { /** @class Certificate * @brief A wrapper for an X509 certificate. * - * This class can take a Certificate from a file, a string or an OpenSSL X509 object. + * This class can take a Certificate from a string or an OpenSSL X509 object. */ class Certificate { public: Certificate () : _certificate (0) + , _public_key (0) {} - Certificate (boost::filesystem::path); Certificate (std::string); Certificate (X509 *); Certificate (Certificate const &); @@ -84,6 +83,10 @@ private: mutable RSA* _public_key; }; +bool operator== (Certificate const & a, Certificate const & b); +bool operator< (Certificate const & a, Certificate const & b); +std::ostream& operator<< (std::ostream&s, Certificate const & c); + /** @class CertificateChain * @brief A chain of any number of certificates, from root to leaf. */ @@ -92,19 +95,19 @@ class CertificateChain public: CertificateChain () {} - void add (boost::shared_ptr c); - void remove (boost::shared_ptr c); + void add (Certificate c); + void remove (Certificate c); void remove (int); - boost::shared_ptr root () const; - boost::shared_ptr leaf () const; + Certificate root () const; + Certificate leaf () const; - typedef std::list > List; + typedef std::list List; List leaf_to_root () const; List root_to_leaf () const; - bool verify () const; + bool valid () const; bool attempt_reorder (); private: