It builds again.
[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/noncopyable.hpp>
30 #include <boost/shared_ptr.hpp>
31 #include <boost/filesystem.hpp>
32 #include <string>
33 #include <list>
34
35 class certificates;
36
37 namespace xmlpp {
38         class Element;
39 }
40
41 namespace dcp {
42
43 /** @class Certificate
44  *  @brief A wrapper for an X509 certificate.
45  *
46  *  This class can take a Certificate from a file, a string or an OpenSSL X509 object.
47  */
48 class Certificate
49 {
50 public:
51         Certificate ()
52                 : _certificate (0)
53         {}
54
55         Certificate (boost::filesystem::path);
56         Certificate (std::string);
57         Certificate (X509 *);
58         Certificate (Certificate const &);
59         ~Certificate ();
60
61         Certificate& operator= (Certificate const &);
62
63         std::string certificate (bool with_begin_end = false) const;
64         std::string issuer () const;
65         std::string serial () const;
66         std::string subject () const;
67         std::string common_name () const;
68
69         RSA* public_key () const;
70
71         std::string thumbprint () const;
72
73 private:
74         void read_string (std::string);
75         
76         static std::string name_for_xml (X509_NAME *);
77         static std::string asn_to_utf8 (ASN1_STRING *);
78         static std::string get_name_part (X509_NAME *, int);
79
80         X509* _certificate;
81         mutable RSA* _public_key;
82 };
83
84 /** @class CertificateChain
85  *  @brief A chain of any number of certificates, from root to leaf.
86  */
87 class CertificateChain
88 {
89 public:
90         CertificateChain () {}
91
92         void add (boost::shared_ptr<Certificate>);
93
94         boost::shared_ptr<Certificate> root () const;
95         boost::shared_ptr<Certificate> leaf () const;
96
97         std::list<boost::shared_ptr<Certificate> > leaf_to_root () const;
98
99 private:
100         friend class ::certificates;
101         std::list<boost::shared_ptr<Certificate> > _certificates;
102 };
103
104 }
105
106 #endif