Extract common code out into kdm_for_screen()
[dcpomatic.git] / src / lib / digester.cc
1 /*
2     Copyright (C) 2014-2016 Carl Hetherington <cth@carlh.net>
3
4     This file is part of DCP-o-matic.
5
6     DCP-o-matic 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     DCP-o-matic 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 DCP-o-matic.  If not, see <http://www.gnu.org/licenses/>.
18
19 */
20
21 #include "digester.h"
22 #include "dcpomatic_assert.h"
23 #include <nettle/md5.h>
24 #include <iomanip>
25 #include <cstdio>
26
27 using std::string;
28 using std::hex;
29 using std::setfill;
30 using std::setw;
31
32 Digester::Digester ()
33 {
34         md5_init (&_context);
35 }
36
37 Digester::~Digester ()
38 {
39         get ();
40 }
41
42 void
43 Digester::add (void const * data, size_t size)
44 {
45         md5_update (&_context, size, reinterpret_cast<uint8_t const *> (data));
46 }
47
48 void
49 Digester::add (string const & s)
50 {
51         add (s.c_str(), s.length());
52 }
53
54 string
55 Digester::get () const
56 {
57         if (!_digest) {
58                 unsigned char digest[MD5_DIGEST_SIZE];
59                 md5_digest (&_context, MD5_DIGEST_SIZE, digest);
60
61                 char hex[MD5_DIGEST_SIZE * 2 + 1];
62                 for (int i = 0; i < MD5_DIGEST_SIZE; ++i) {
63                         sprintf(hex + i * 2, "%02x", digest[i]);
64                 }
65
66                 _digest = hex;
67         }
68
69         return _digest.get ();
70 }
71
72 void
73 Digester::get (uint8_t* buffer) const
74 {
75         md5_digest (&_context, MD5_DIGEST_SIZE, buffer);
76 }
77
78
79 int
80 Digester::size () const
81 {
82         return MD5_DIGEST_SIZE;
83 }