Various encryption-related stuff.
[libdcp.git] / src / key.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_KEY_H
21 #define LIBDCP_KEY_H
22
23 #include <stdint.h>
24
25 namespace libdcp {
26
27 /** A key for encrypting MXFs */
28 class Key
29 {
30 public:
31         /** Create a new, random key */
32         Key ();
33
34         /** Create a Key from a raw key value */
35         Key (uint8_t const *);
36
37         /** Create a Key from a hex key value */
38         Key (std::string);
39
40         Key (Key const &);
41         ~Key ();
42
43         Key& operator= (Key const &);
44
45         uint8_t* value () const {
46                 return _value;
47         }
48
49         std::string hex () const;
50
51 private:
52         /** Raw key value */
53         uint8_t* _value;
54 };
55
56 extern bool operator== (Key const & a, Key const & b);
57 extern bool operator!= (Key const & a, Key const & b);
58
59 }
60
61 #endif