It builds again.
[libdcp.git] / src / signer.h
1 /*
2     Copyright (C) 2013 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 /** @file  src/signer.h
21  *  @brief Signer class.
22  */
23
24 #include "certificates.h"
25 #include "types.h"
26 #include <boost/filesystem.hpp>
27
28 namespace xmlpp {
29         class Element;
30         class Node;
31 }
32
33 namespace dcp {
34
35 /** @class Signer
36  *  @brief A class which can sign XML files.
37  */
38 class Signer
39 {
40 public:
41         /** @param c Certificate chain to sign with.
42          *  @param k Key to sign with.
43          */
44         Signer (CertificateChain c, boost::filesystem::path k)
45                 : _certificates (c)
46                 , _key (k)
47         {}
48
49         void sign (xmlpp::Element* parent, Standard standard) const;
50         void add_signature_value (xmlpp::Node* parent, std::string ns) const;
51
52         CertificateChain const & certificates () const {
53                 return _certificates;
54         }
55         
56 private:        
57
58         /** Certificate chain to sign with */
59         CertificateChain _certificates;
60         /** Filename of signer key */
61         boost::filesystem::path _key;
62 };
63
64 }