Merge branch 'master' into 1.0
[libdcp.git] / src / certificates.h
1 /*
2     Copyright (C) 2012-2014 Carl Hetherington <cth@carlh.net>
3
4     This program is free software; you can redistribute it and/or modify
5     it under the terms of the GNU General Public License as published by
6     the Free Software Foundation; either version 2 of the License, or
7     (at your option) any later version.
8
9     This program is distributed in the hope that it will be useful,
10     but WITHOUT ANY WARRANTY; without even the implied warranty of
11     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12     GNU General Public License for more details.
13
14     You should have received a copy of the GNU General Public License
15     along with this program; if not, write to the Free Software
16     Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 */
19
20 /** @file  src/certificates.h
21  *  @brief Certificate and CertificateChain classes.
22  */
23
24 #ifndef LIBDCP_CERTIFICATES_H
25 #define LIBDCP_CERTIFICATES_H
26
27 #undef X509_NAME
28 #include <openssl/x509.h>
29 #include <boost/shared_ptr.hpp>
30 #include <boost/filesystem.hpp>
31 #include <string>
32 #include <list>
33
34 class certificates;
35
36 namespace xmlpp {
37         class Element;
38 }
39
40 namespace dcp {
41
42 /** @class Certificate
43  *  @brief A wrapper for an X509 certificate.
44  *
45  *  This class can take a Certificate from a file, a string or an OpenSSL X509 object.
46  */
47 class Certificate
48 {
49 public:
50         Certificate ()
51                 : _certificate (0)
52         {}
53
54         Certificate (boost::filesystem::path);
55         Certificate (std::string);
56         Certificate (X509 *);
57         Certificate (Certificate const &);
58         ~Certificate ();
59
60         Certificate& operator= (Certificate const &);
61
62         std::string certificate (bool with_begin_end = false) const;
63         std::string issuer () const;
64         std::string serial () const;
65         std::string subject () const;
66         std::string common_name () const;
67
68         RSA* public_key () const;
69
70         std::string thumbprint () const;
71
72 private:
73         void read_string (std::string);
74         
75         static std::string name_for_xml (X509_NAME *);
76         static std::string asn_to_utf8 (ASN1_STRING *);
77         static std::string get_name_part (X509_NAME *, int);
78
79         X509* _certificate;
80         mutable RSA* _public_key;
81 };
82
83 /** @class CertificateChain
84  *  @brief A chain of any number of certificates, from root to leaf.
85  */
86 class CertificateChain
87 {
88 public:
89         CertificateChain () {}
90
91         void add (boost::shared_ptr<Certificate> c);
92
93         boost::shared_ptr<Certificate> root () const;
94         boost::shared_ptr<Certificate> leaf () const;
95
96         std::list<boost::shared_ptr<Certificate> > leaf_to_root () const;
97
98 private:
99         friend class ::certificates;
100         std::list<boost::shared_ptr<Certificate> > _certificates;
101 };
102
103 }
104
105 #endif