253589fed63f2dcd906f8d607ea34b23b25987bc
[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 : public boost::noncopyable
32 {
33 public:
34         KDMKey (uint8_t const *, int);
35
36         Key key () const {
37                 return _key;
38         }
39         
40 private:
41         void get (uint8_t *, uint8_t const **, int) const;
42         std::string get (uint8_t const **, int) const;
43         std::string get_uuid (uint8_t const **) const;
44         void put (uint8_t **, uint8_t const *, int) const;
45         void put_uuid (uint8_t **, std::string) const;
46         
47         uint8_t _signer_thumbprint[20];
48         std::string _cpl_id;
49         std::string _not_valid_before;
50         std::string _not_valid_after;
51         std::string _key_type;
52         std::string _key_id;
53         Key _key;
54 };
55
56 class KDM
57 {
58 public:
59         KDM (boost::filesystem::path, boost::filesystem::path);
60
61         std::list<KDMKey> keys () const {
62                 return _keys;
63         }
64
65 private:
66         std::list<KDMKey> _keys;
67 };
68
69
70 }
71
72 #endif