Merge master.
[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 : public boost::noncopyable
42 {
43 public:
44         /** @param c Certificate chain to sign with.
45          *  @param k Key to sign with.
46          */
47         Signer (CertificateChain c, boost::filesystem::path k)
48                 : _certificates (c)
49                 , _key (k)
50         {}
51
52         void sign (xmlpp::Element* parent, Standard standard) const;
53         void add_signature_value (xmlpp::Node* parent, std::string ns) const;
54
55         CertificateChain const & certificates () const {
56                 return _certificates;
57         }
58         
59 private:        
60
61         /** Certificate chain to sign with */
62         CertificateChain _certificates;
63         /** Filename of signer key */
64         boost::filesystem::path _key;
65 };
66
67 }
68
69 #endif