8d13a25ae19a201f6a284bb727600bdd90da9aa8
[libdcp.git] / src / encrypted_kdm.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 #include "local_time.h"
21 #include <boost/filesystem.hpp>
22 #include <boost/date_time/local_time/local_time.hpp>
23
24 namespace cxml {
25         class Node;
26 }
27
28 namespace dcp {
29
30 namespace data {
31         class EncryptedKDMData;
32 }
33
34 class Signer;   
35 class Certificate;
36
37 class EncryptedKDM
38 {
39 public:
40         /** Read a KDM from an XML file */
41         EncryptedKDM (boost::filesystem::path file);
42
43         /** Construct an EncryptedKDM from a set of details */
44         EncryptedKDM (
45                 boost::shared_ptr<const Signer> signer,
46                 boost::shared_ptr<const Certificate> recipient,
47                 std::string device_list_description,
48                 std::string cpl_id,
49                 std::string cpl_content_title_text,
50                 LocalTime _not_valid_before,
51                 LocalTime _not_valid_after,
52                 std::list<std::pair<std::string, std::string> > key_ids,
53                 std::list<std::string> keys
54                 );
55
56         EncryptedKDM (EncryptedKDM const & kdm);
57         EncryptedKDM & operator= (EncryptedKDM const &);
58         ~EncryptedKDM ();
59
60         void as_xml (boost::filesystem::path) const;
61         std::string as_xml () const;
62
63         std::list<std::string> keys () const;
64         
65 private:
66         data::EncryptedKDMData* _data;
67 };
68
69 }