libdcp
decrypted_kdm.h
Go to the documentation of this file.
1 /*
2  Copyright (C) 2013-2021 Carl Hetherington <cth@carlh.net>
3 
4  This file is part of libdcp.
5 
6  libdcp is free software; you can redistribute it and/or modify
7  it under the terms of the GNU General Public License as published by
8  the Free Software Foundation; either version 2 of the License, or
9  (at your option) any later version.
10 
11  libdcp is distributed in the hope that it will be useful,
12  but WITHOUT ANY WARRANTY; without even the implied warranty of
13  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14  GNU General Public License for more details.
15 
16  You should have received a copy of the GNU General Public License
17  along with libdcp. If not, see <http://www.gnu.org/licenses/>.
18 
19  In addition, as a special exception, the copyright holders give
20  permission to link the code of portions of this program with the
21  OpenSSL library under certain conditions as described in each
22  individual source file, and distribute linked combinations
23  including the two.
24 
25  You must obey the GNU General Public License in all respects
26  for all of the code used other than OpenSSL. If you modify
27  file(s) with this exception, you may extend this exception to your
28  version of the file(s), but you are not obligated to do so. If you
29  do not wish to do so, delete this exception statement from your
30  version. If you delete this exception statement from all source
31  files in the program, then also delete it here.
32 */
33 
34 
40 #ifndef LIBDCP_DECRYPTED_KDM_H
41 #define LIBDCP_DECRYPTED_KDM_H
42 
43 
44 #include "key.h"
45 #include "local_time.h"
46 #include "decrypted_kdm_key.h"
47 #include "certificate.h"
48 #include <boost/filesystem.hpp>
49 #include <boost/optional.hpp>
50 
51 
52 struct decrypted_kdm_test;
53 
54 
55 namespace dcp {
56 
57 
58 class DecryptedKDMKey;
59 class EncryptedKDM;
60 class CertificateChain;
61 class CPL;
62 class ReelFileAsset;
63 
64 
75 {
76 public:
80  DecryptedKDM (EncryptedKDM const & kdm, std::string private_key);
81 
88  DecryptedKDM (
89  LocalTime not_valid_before,
90  LocalTime not_valid_after,
91  std::string annotation_text,
92  std::string content_title_text,
93  std::string issue_date
94  );
95 
99  DecryptedKDM (
100  std::string cpl_id,
101  std::map<std::shared_ptr<const ReelFileAsset>, Key> keys,
102  LocalTime not_valid_before,
103  LocalTime not_valid_after,
104  std::string annotation_text,
105  std::string content_title_text,
106  std::string issue_date
107  );
108 
117  DecryptedKDM (
118  std::shared_ptr<const CPL> cpl,
119  Key key,
120  LocalTime not_valid_before,
121  LocalTime not_valid_after,
122  std::string annotation_text,
123  std::string content_title_text,
124  std::string issue_date
125  );
126 
139  std::shared_ptr<const CertificateChain> signer,
140  Certificate recipient,
141  std::vector<std::string> trusted_devices,
142  Formulation formulation,
143  bool disable_forensic_marking_picture,
144  boost::optional<int> disable_forensic_marking_audio
145  ) const;
146 
152  void add_key (boost::optional<std::string> type, std::string key_id, Key key, std::string cpl_id, Standard standard);
153 
154  void add_key (DecryptedKDMKey key);
155 
157  std::vector<DecryptedKDMKey> keys () const {
158  return _keys;
159  }
160 
161  boost::optional<std::string> annotation_text () const {
162  return _annotation_text;
163  }
164 
165  std::string content_title_text () const {
166  return _content_title_text;
167  }
168 
169  std::string issue_date () const {
170  return _issue_date;
171  }
172 
173 private:
174 
175  friend struct ::decrypted_kdm_test;
176 
177  static void put_uuid (uint8_t ** d, std::string id);
178  static std::string get_uuid (unsigned char ** p);
179 
180  LocalTime _not_valid_before;
181  LocalTime _not_valid_after;
182  boost::optional<std::string> _annotation_text;
183  std::string _content_title_text;
184  std::string _issue_date;
185  std::vector<DecryptedKDMKey> _keys;
186 };
187 
188 
189 }
190 
191 
192 #endif
Certificate class.
A wrapper for an X509 certificate.
Definition: certificate.h:66
An un- or de-crypted key from a KDM.
A decrypted KDM.
Definition: decrypted_kdm.h:75
DecryptedKDM(EncryptedKDM const &kdm, std::string private_key)
void add_key(boost::optional< std::string > type, std::string key_id, Key key, std::string cpl_id, Standard standard)
std::vector< DecryptedKDMKey > keys() const
EncryptedKDM encrypt(std::shared_ptr< const CertificateChain > signer, Certificate recipient, std::vector< std::string > trusted_devices, Formulation formulation, bool disable_forensic_marking_picture, boost::optional< int > disable_forensic_marking_audio) const
An encrypted KDM.
Definition: encrypted_kdm.h:76
A key for decrypting/encrypting assets.
Definition: key.h:59
A representation of a local time (down to the second), including its offset from GMT (equivalent to x...
Definition: local_time.h:68
DecryptedKDMKey class.
Key class.
LocalTime class.
Namespace for everything in libdcp.
Definition: array_data.h:50