Various encryption-related stuff.
[libdcp.git] / src / certificates.h
index e1a572ec0ecc03ce9c6361d912b508abe13335ee..ef2e63b411b0f0c9d939fb48b0ec6d803b4a423d 100644 (file)
@@ -24,6 +24,8 @@
 #include <list>
 #include <boost/noncopyable.hpp>
 #include <boost/shared_ptr.hpp>
+#include <boost/filesystem.hpp>
+#undef X509_NAME
 #include <openssl/x509.h>
 
 class certificates;
@@ -34,27 +36,38 @@ namespace xmlpp {
 
 namespace libdcp {
 
-class Certificate : public boost::noncopyable
+class Certificate
 {
 public:
        Certificate ()
                : _certificate (0)
        {}
 
-       Certificate (std::string const &);
+       Certificate (boost::filesystem::path);
+       Certificate (std::string);
        Certificate (X509 *);
+       Certificate (Certificate const &);
        ~Certificate ();
 
-       std::string certificate () const;
+       Certificate& operator= (Certificate const &);
+
+       /** @param with_begin_end true to include BEGIN CERTIFICATE / END CERTIFICATE markers
+        *  @return the whole certificate as a string.
+        */
+       std::string certificate (bool with_begin_end = false) const;
        std::string issuer () const;
        std::string serial () const;
        std::string subject () const;
 
        std::string thumbprint () const;
 
-       static std::string name_for_xml (std::string const &);
-
 private:
+       void read_string (std::string);
+       
+       static std::string name_for_xml (X509_NAME *);
+       static std::string asn_to_utf8 (ASN1_STRING *);
+       static std::string get_name_part (X509_NAME *, int);
+
        X509* _certificate;
 };