Make Key support any length.
[libdcp.git] / src / key.cc
1 /*
2     Copyright (C) 2013-2019 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 /** @file  src/key.cc
35  *  @brief Key class.
36  */
37
38 #include "key.h"
39 #include "dcp_assert.h"
40 #include <asdcp/AS_DCP.h>
41 #include <asdcp/KM_prng.h>
42 #include <asdcp/KM_util.h>
43 #include <string>
44 #include <iomanip>
45
46 using std::string;
47 using std::setw;
48 using std::setfill;
49 using namespace dcp;
50
51 Key::Key (int length)
52         : _value (new uint8_t[length])
53         , _length (length)
54 {
55         Kumu::FortunaRNG rng;
56         rng.FillRandom (_value, _length);
57 }
58
59 Key::Key (uint8_t const * value, int length)
60         : _value (new uint8_t[length])
61         , _length (length)
62 {
63         memcpy (_value, value, _length);
64 }
65
66 Key::Key (string value)
67         : _value (new uint8_t[value.length() / 2])
68         , _length (value.length() / 2)
69 {
70         unsigned int length_done;
71         Kumu::hex2bin (value.c_str(), _value, _length, &length_done);
72 }
73
74 Key::Key (Key const & other)
75         : _value (new uint8_t[other._length])
76         , _length (other._length)
77 {
78         memcpy (_value, other._value, _length);
79 }
80
81 Key::~Key ()
82 {
83         delete[] _value;
84 }
85
86 Key &
87 Key::operator= (Key const & other)
88 {
89         if (this == &other) {
90                 return *this;
91         }
92
93         memcpy (_value, other._value, _length);
94         return *this;
95 }
96
97 string
98 Key::hex () const
99 {
100         char buffer[_length * 2 + 1];
101
102         char* p = buffer;
103         for (int i = 0; i < _length; ++i) {
104 #ifdef LIBDCP_WINDOWS
105                 __mingw_snprintf (p, 3, "%02hhx", buffer[i]);
106 #else
107                 snprintf (p, 3, "%02hhx", buffer[i]);
108 #endif
109                 p += 2;
110         }
111
112         return buffer;
113 }
114
115 bool
116 dcp::operator== (Key const & a, Key const & b)
117 {
118         return a.length() == b.length() && memcmp(a.value(), b.value(), a.length()) == 0;
119 }
120
121 bool
122 dcp::operator!= (Key const & a, Key const & b)
123 {
124         return !(a == b);
125 }