Fix incorrect free and leak.
[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
25 namespace libdcp {
26
27 class KDMCipher
28 {
29 public:
30         KDMCipher (unsigned char const *, int);
31
32         std::string structure_id () const {
33                 return _structure_id;
34         }
35         
36         std::string signer_thumbprint () const {
37                 return _signer_thumbprint;
38         }
39         
40         std::string cpl_id () const {
41                 return _cpl_id;
42         }
43         
44         std::string key_type () const {
45                 return _key_type;
46         }
47         
48         std::string key_id () const {
49                 return _key_id;
50         }
51
52         std::string not_valid_before () const {
53                 return _not_valid_before;
54         }
55         
56         std::string not_valid_after () const {
57                 return _not_valid_after;
58         }
59         
60         std::string key_string () const {
61                 return _key_string;
62         }
63
64         unsigned char const * key_raw () const {
65                 return _key_raw;
66         }
67         
68 private:
69         std::string get (unsigned char const **, int) const;
70         std::string get_uuid (unsigned char const **, int) const;
71         std::string get_hex (unsigned char const **, int) const;
72         
73         std::string _structure_id;
74         std::string _signer_thumbprint;
75         std::string _cpl_id;
76         std::string _key_type;
77         std::string _key_id;
78         std::string _not_valid_before;
79         std::string _not_valid_after;
80         std::string _key_string;
81         unsigned char _key_raw[16];
82 };
83
84 class KDM
85 {
86 public:
87         KDM (boost::filesystem::path, boost::filesystem::path);
88
89         std::list<KDMCipher> ciphers () const {
90                 return _ciphers;
91         }
92
93 private:
94         std::list<KDMCipher> _ciphers;
95 };
96
97
98 }
99
100 #endif