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