Quite large reworking of signer/cert handling.
[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         /** @param c Certificate chain to sign with.
47          *  @param k Key to sign with as a PEM-format string.
48          */
49         Signer (CertificateChain c, std::string k)
50                 : _certificates (c)
51                 , _key (k)
52         {}
53
54         void sign (xmlpp::Element* parent, Standard standard) const;
55         void add_signature_value (xmlpp::Node* parent, std::string ns) const;
56
57         CertificateChain const & certificates () const {
58                 return _certificates;
59         }
60
61         CertificateChain& certificates () {
62                 return _certificates;
63         }
64         
65         std::string key () const {
66                 return _key;
67         }
68
69         void set_key (std::string k) {
70                 _key = k;
71         }
72
73         bool valid () const;
74         
75 private:        
76
77         /** Certificate chain to sign with */
78         CertificateChain _certificates;
79         /** Key to sign with as a PEM-format string */
80         std::string _key;
81 };
82
83 }
84
85 #endif