c012c101f810d64410988f5e9991192186d7d665
[libdcp.git] / src / kdm.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 #ifndef LIBDCP_KDM_H
21 #define LIBDCP_KDM_H
22
23 #include <boost/filesystem.hpp>
24 #include "key.h"
25
26 namespace libdcp {
27
28 /** A single key for encrypting or decrypting an MXF.  One or more of these
29  *  are delivered in a KDM.
30  */
31 class KDMKey
32 {
33 public:
34         KDMKey (unsigned char const *, int);
35
36         std::string structure_id () const {
37                 return _structure_id;
38         }
39         
40         std::string signer_thumbprint () const {
41                 return _signer_thumbprint;
42         }
43         
44         std::string cpl_id () const {
45                 return _cpl_id;
46         }
47         
48         std::string key_type () const {
49                 return _key_type;
50         }
51
52         std::string key_id () const {
53                 return _key_id;
54         }
55         
56         std::string not_valid_before () const {
57                 return _not_valid_before;
58         }
59         
60         std::string not_valid_after () const {
61                 return _not_valid_after;
62         }
63
64         Key key () const {
65                 return _key;
66         }
67         
68 private:
69         std::string get (unsigned char const **, int) const;
70         std::string get_uuid (unsigned char const **, int) const;
71         
72         std::string _structure_id;
73         std::string _signer_thumbprint;
74         std::string _cpl_id;
75         std::string _not_valid_before;
76         std::string _not_valid_after;
77         std::string _key_type;
78         std::string _key_id;
79         Key _key;
80 };
81
82 class KDM
83 {
84 public:
85         KDM (boost::filesystem::path, boost::filesystem::path);
86
87         std::list<KDMKey> keys () const {
88                 return _keys;
89         }
90
91 private:
92         std::list<KDMKey> _keys;
93 };
94
95
96 }
97
98 #endif