Various attempts to clean up DCP comparison code.
[libdcp.git] / src / certificates.h
index aba6d5cfa2b8f1534c44638884f7834bef99df87..ebc4cc53560d42a7e6916a1a511ad4ec8028fab1 100644 (file)
@@ -26,7 +26,6 @@
 
 #undef X509_NAME
 #include <openssl/x509.h>
-#include <boost/shared_ptr.hpp>
 #include <boost/filesystem.hpp>
 #include <string>
 #include <list>
@@ -49,6 +48,7 @@ class Certificate
 public:
        Certificate ()
                : _certificate (0)
+               , _public_key (0)
        {}
 
        Certificate (std::string);
@@ -83,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.
  */
@@ -91,14 +95,14 @@ class CertificateChain
 public:
        CertificateChain () {}
 
-       void add (boost::shared_ptr<const Certificate> c);
-       void remove (boost::shared_ptr<const Certificate> c);
+       void add (Certificate c);
+       void remove (Certificate c);
        void remove (int);
 
-       boost::shared_ptr<const Certificate> root () const;
-       boost::shared_ptr<const Certificate> leaf () const;
+       Certificate root () const;
+       Certificate leaf () const;
 
-       typedef std::list<boost::shared_ptr<const Certificate> > List;
+       typedef std::list<Certificate> List;
        
        List leaf_to_root () const;
        List root_to_leaf () const;