Add a somewhat dubious constructor.
[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 (X509 *);
45         ~Certificate ();
46
47         std::string certificate () const;
48         std::string issuer () const;
49         std::string serial () const;
50         std::string subject () const;
51
52         std::string thumbprint () const;
53
54         static std::string name_for_xml (std::string const &);
55
56 private:
57         X509* _certificate;
58 };
59
60 class CertificateChain
61 {
62 public:
63         CertificateChain () {}
64         CertificateChain (std::string const &);
65
66         boost::shared_ptr<Certificate> root () const;
67         boost::shared_ptr<Certificate> leaf () const;
68
69         std::list<boost::shared_ptr<Certificate> > leaf_to_root () const;
70
71 private:
72         friend class ::certificates;
73         std::list<boost::shared_ptr<Certificate> > _certificates;
74 };
75
76 }
77
78 #endif