]>
git.saurik.com Git - apt.git/blob - apt-pkg/contrib/md5.h
1 // -*- mode: cpp; mode: fold -*-
3 // $Id: md5.h,v 1.2 1998/11/25 23:54:45 jgg Exp $
4 /* ######################################################################
6 MD5SumValue - Storage for a MD5Sum
7 MD5Summation - MD5 Message Digest Algorithm.
9 This is a C++ interface to a set of MD5Sum functions. The class can
10 store a MD5Sum in 16 bytes of memory.
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.
15 There are two classes because computing a MD5 is not a continual
16 operation unless 64 byte blocks are used. Also the summation requires an
17 extra 18*4 bytes to operate.
19 ##################################################################### */
25 #pragma interface "apt-pkg/md5.h"
35 unsigned char Sum
[4*4];
40 bool operator ==(const MD5SumValue
&rhs
) const;
42 inline operator string() const {return Value();};
45 MD5SumValue(string Str
);
51 unsigned char Buf
[4*4];
52 unsigned char Bytes
[2*4];
53 unsigned char In
[16*4];
58 bool Add(const unsigned char *Data
,unsigned long Size
);
59 inline bool Add(const char *Data
) {return Add((unsigned char *)Data
,strlen(Data
));};
60 bool AddFD(int Fd
,unsigned long Size
);
61 inline bool Add(const unsigned char *Beg
,const unsigned char *End
)
62 {return Add(Beg
,End
-Beg
);};