No-op: whitespace.
[libdcp.git] / src / decrypted_kdm_key.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 /** @file  src/decrypted_kdm_key.h
21  *  @brief DecryptedKDMKey class
22  */
23
24 #ifndef LIBDCP_DECRYPTED_KDM_KEY_H
25 #define LIBDCP_DECRYPTED_KDM_KEY_H
26
27 #include "key.h"
28
29 namespace dcp {
30
31 /** @class DecryptedKDMKey
32  *  @brief An un- or de-crypted key from a KDM.
33  */
34 class DecryptedKDMKey
35 {
36 public:
37         DecryptedKDMKey (std::string type, std::string id, Key key, std::string cpl_id)
38                 : _type (type)
39                 , _id (id)
40                 , _key (key)
41                 , _cpl_id (cpl_id)
42         {}
43
44         std::string type () const {
45                 return _type;
46         }
47
48         std::string id () const {
49                 return _id;
50         }
51
52         Key key () const {
53                 return _key;
54         }
55
56         std::string cpl_id () const {
57                 return _cpl_id;
58         }
59
60 private:
61         std::string _type;
62         std::string _id;
63         Key _key;
64         std::string _cpl_id;
65 };
66
67 bool operator== (DecryptedKDMKey const &, DecryptedKDMKey const &);
68
69 }
70
71 #endif