Add constructor of MonoPictureFrame from a JPEG2000 codestream file.
[libdcp.git] / src / signer.h
1 /*
2     Copyright (C) 2013-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 #ifndef LIBDCP_SIGNER_H
21 #define LIBDCP_SIGNER_H
22
23 /** @file  src/signer.h
24  *  @brief Signer class.
25  */
26
27 #include "certificates.h"
28 #include "types.h"
29 #include <boost/filesystem.hpp>
30
31 namespace xmlpp {
32         class Element;
33         class Node;
34 }
35
36 namespace dcp {
37
38 /** @class Signer
39  *  @brief A class which can sign XML files.
40  */
41 class Signer
42 {
43 public:
44         Signer (boost::filesystem::path openssl);
45
46         Signer (
47                 boost::filesystem::path openssl,
48                 std::string organisation,
49                 std::string organisational_unit,
50                 std::string root_common_name,
51                 std::string intermediate_common_name,
52                 std::string leaf_common_name
53                 );
54         
55         /** @param c Certificate chain to sign with.
56          *  @param k Key to sign with as a PEM-format string.
57          */
58         Signer (CertificateChain c, std::string k)
59                 : _certificates (c)
60                 , _key (k)
61         {}
62
63         void sign (xmlpp::Element* parent, Standard standard) const;
64         void add_signature_value (xmlpp::Node* parent, std::string ns) const;
65
66         CertificateChain const & certificates () const {
67                 return _certificates;
68         }
69
70         CertificateChain& certificates () {
71                 return _certificates;
72         }
73         
74         std::string key () const {
75                 return _key;
76         }
77
78         void set_key (std::string k) {
79                 _key = k;
80         }
81
82         bool valid () const;
83         
84 private:        
85         void create (boost::filesystem::path directory);
86         
87         /** Certificate chain to sign with */
88         CertificateChain _certificates;
89         /** Key to sign with as a PEM-format string */
90         std::string _key;
91 };
92
93 }
94
95 #endif