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