]>
Commit | Line | Data |
---|---|---|
17a10bf5 AL |
1 | // -*- mode: cpp; mode: fold -*- |
2 | // Description /*{{{*/ | |
233b185f | 3 | // $Id: md5.h,v 1.6 2001/05/07 05:06:52 jgg Exp $ |
17a10bf5 AL |
4 | /* ###################################################################### |
5 | ||
6 | MD5SumValue - Storage for a MD5Sum | |
7 | MD5Summation - MD5 Message Digest Algorithm. | |
8 | ||
9 | This is a C++ interface to a set of MD5Sum functions. The class can | |
10 | store a MD5Sum in 16 bytes of memory. | |
11 | ||
12 | A MD5Sum is used to generate a (hopefully) unique 16 byte number for a | |
13 | block of data. This can be used to gaurd against corruption of a file. | |
6e52073f AL |
14 | MD5 should not be used for tamper protection, use SHA or something more |
15 | secure. | |
17a10bf5 AL |
16 | |
17 | There are two classes because computing a MD5 is not a continual | |
18 | operation unless 64 byte blocks are used. Also the summation requires an | |
19 | extra 18*4 bytes to operate. | |
20 | ||
21 | ##################################################################### */ | |
22 | /*}}}*/ | |
23 | #ifndef APTPKG_MD5_H | |
24 | #define APTPKG_MD5_H | |
25 | ||
17a10bf5 AL |
26 | |
27 | #include <string> | |
4f333a8b | 28 | #include <cstring> |
42ab8223 | 29 | #include <algorithm> |
aa97e2e3 | 30 | #include <stdint.h> |
17a10bf5 | 31 | |
7ac56f8f | 32 | #include "hashsum_template.h" |
17a10bf5 | 33 | |
a4f6bdc8 DK |
34 | #ifndef APT_8_CLEANER_HEADERS |
35 | using std::string; | |
36 | using std::min; | |
37 | #endif | |
38 | ||
7ac56f8f | 39 | typedef HashSumValue<128> MD5SumValue; |
17a10bf5 | 40 | |
c31c1dde | 41 | class MD5Summation : public SummationImplementation |
17a10bf5 | 42 | { |
ed478d8c | 43 | uint32_t Buf[4]; |
17a10bf5 AL |
44 | unsigned char Bytes[2*4]; |
45 | unsigned char In[16*4]; | |
46 | bool Done; | |
c31c1dde | 47 | |
17a10bf5 AL |
48 | public: |
49 | ||
650faab0 | 50 | bool Add(const unsigned char *inbuf, unsigned long long inlen); |
c31c1dde DK |
51 | using SummationImplementation::Add; |
52 | ||
17a10bf5 | 53 | MD5SumValue Result(); |
c31c1dde | 54 | |
17a10bf5 AL |
55 | MD5Summation(); |
56 | }; | |
57 | ||
58 | #endif |