Add test() to cscript.
[libdcp.git] / src / certificates.h
index 06baa547fb649b798b1c2796a683c3d8cc63db8a..2bf8d0db2ff4f5eb0233caeeb79b0a22a3ddebdf 100644 (file)
@@ -24,9 +24,8 @@
 #include <list>
 #include <boost/noncopyable.hpp>
 #include <boost/shared_ptr.hpp>
-#ifdef LIBDCP_WINDOWS
-#include "wincrypt.h"
-#endif
+#include <boost/filesystem.hpp>
+#undef X509_NAME
 #include <openssl/x509.h>
 
 class certificates;
@@ -37,30 +36,44 @@ 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 common_name () const;
+
+       /** @return RSA public key from this Certificate.  Caller must not free the returned value. */
+       RSA* public_key () const;
 
        std::string thumbprint () 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;
+       mutable RSA* _public_key;
 };
 
 class CertificateChain