X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=src%2Fcertificates.h;h=aba6d5cfa2b8f1534c44638884f7834bef99df87;hb=81821868864e19809b373639b8cb78d2acc522a2;hp=8cb570c043ac64405aed705d41d90f401c8d880a;hpb=a5fafaa249e3cd45b6c64592991ab1f0e0247e5f;p=libdcp.git diff --git a/src/certificates.h b/src/certificates.h index 8cb570c0..aba6d5cf 100644 --- a/src/certificates.h +++ b/src/certificates.h @@ -26,7 +26,6 @@ #undef X509_NAME #include -#include #include #include #include @@ -43,7 +42,7 @@ 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 { @@ -52,7 +51,6 @@ public: : _certificate (0) {} - Certificate (boost::filesystem::path); Certificate (std::string); Certificate (X509 *); Certificate (Certificate const &); @@ -66,6 +64,10 @@ public: std::string subject () const; std::string common_name () const; + X509* x509 () const { + return _certificate; + } + RSA* public_key () const; std::string thumbprint () const; @@ -89,16 +91,25 @@ class CertificateChain public: CertificateChain () {} - void add (boost::shared_ptr c); + void add (boost::shared_ptr c); + void remove (boost::shared_ptr c); + void remove (int); + + boost::shared_ptr root () const; + boost::shared_ptr leaf () const; - boost::shared_ptr root () const; - boost::shared_ptr leaf () const; + typedef std::list > List; + + List leaf_to_root () const; + List root_to_leaf () const; - std::list > leaf_to_root () const; + bool valid () const; + bool attempt_reorder (); private: friend class ::certificates; - std::list > _certificates; + + List _certificates; }; }