155d43af478b32d62fcae50a8e13282ba6bbb5b9
[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 <nettle/md5.h>
23 #include <iomanip>
24
25 using std::string;
26 using std::hex;
27 using std::setfill;
28 using std::setw;
29
30 Digester::Digester ()
31 {
32         md5_init (&_context);
33 }
34
35 Digester::~Digester ()
36 {
37         get ();
38 }
39
40 void
41 Digester::add (void const * data, size_t size)
42 {
43         md5_update (&_context, size, reinterpret_cast<uint8_t const *> (data));
44 }
45
46 void
47 Digester::add (string const & s)
48 {
49         add (s.c_str(), s.length());
50 }
51
52 string
53 Digester::get () const
54 {
55         if (!_digest) {
56                 unsigned char digest[MD5_DIGEST_SIZE];
57                 md5_digest (&_context, MD5_DIGEST_SIZE, digest);
58
59                 char hex[MD5_DIGEST_SIZE * 2 + 1];
60                 for (int i = 0; i < MD5_DIGEST_SIZE; ++i) {
61                         sprintf(hex + i * 2, "%02x", digest[i]);
62                 }
63
64                 _digest = hex;
65         }
66
67         return _digest.get ();
68 }