More win32 build hacks.
[libdcp.git] / src / certificates.h
1 /*
2     Copyright (C) 2012 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 #ifndef LIBDCP_CERTIFICATES_H
21 #define LIBDCP_CERTIFICATES_H
22
23 #include <string>
24 #include <list>
25 #include <boost/noncopyable.hpp>
26 #include <boost/shared_ptr.hpp>
27 #undef X509_NAME
28 #include <openssl/x509.h>
29
30 class certificates;
31
32 namespace xmlpp {
33         class Element;
34 }
35
36 namespace libdcp {
37
38 class Certificate : public boost::noncopyable
39 {
40 public:
41         Certificate ()
42                 : _certificate (0)
43         {}
44
45         Certificate (std::string const &);
46         Certificate (X509 *);
47         ~Certificate ();
48
49         std::string certificate () const;
50         std::string issuer () const;
51         std::string serial () const;
52         std::string subject () const;
53
54         std::string thumbprint () const;
55
56 private:
57         static std::string name_for_xml (X509_NAME *);
58         static std::string asn_to_utf8 (ASN1_STRING *);
59         static std::string get_name_part (X509_NAME *, int);
60
61         X509* _certificate;
62 };
63
64 class CertificateChain
65 {
66 public:
67         CertificateChain () {}
68
69         void add (boost::shared_ptr<Certificate>);
70
71         boost::shared_ptr<Certificate> root () const;
72         boost::shared_ptr<Certificate> leaf () const;
73
74         std::list<boost::shared_ptr<Certificate> > leaf_to_root () const;
75
76 private:
77         friend class ::certificates;
78         std::list<boost::shared_ptr<Certificate> > _certificates;
79 };
80
81 }
82
83 #endif