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