Include audio mapping in the digest used to distinguish different
[dcpomatic.git] / src / lib / md5_digester.cc
1 /*
2     Copyright (C) 2014 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 #include <iomanip>
21 #include <sstream>
22 #include <openssl/md5.h>
23 #include "md5_digester.h"
24
25 using std::string;
26 using std::stringstream;
27 using std::hex;
28 using std::setfill;
29 using std::setw;
30
31 MD5Digester::MD5Digester ()
32 {
33         MD5_Init (&_context);
34 }
35
36 MD5Digester::~MD5Digester ()
37 {
38         get ();
39 }
40
41 void
42 MD5Digester::add (void const * data, size_t size)
43 {
44         MD5_Update (&_context, data, size);
45 }
46
47 string
48 MD5Digester::get () const
49 {
50         if (!_digest) {
51                 unsigned char digest[MD5_DIGEST_LENGTH];
52                 MD5_Final (digest, &_context);
53                 
54                 stringstream s;
55                 for (int i = 0; i < MD5_DIGEST_LENGTH; ++i) {
56                         s << hex << setfill('0') << setw(2) << ((int) digest[i]);
57                 }
58                 
59                 _digest = s.str ();
60         }
61         
62         return _digest.get ();
63 }