]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/md5.h
merged from lp:~donkult/apt/sid
[apt.git] / apt-pkg / contrib / md5.h
index 47c6a7cec12637806add1098a3c80e7770746bc5..96c8975b46f6cc165b257f889bd1bb2f56ac5168 100644 (file)
 #ifndef APTPKG_MD5_H
 #define APTPKG_MD5_H
 
-#ifdef __GNUG__
-#pragma interface "apt-pkg/md5.h"
-#endif 
 
 #include <string>
+#include <cstring>
+#include <algorithm>
+#include <stdint.h>
 
 using std::string;
+using std::min;
 
 class MD5Summation;
 
@@ -56,7 +57,7 @@ class MD5SumValue
 
 class MD5Summation
 {
-   unsigned char Buf[4*4];
+   uint32_t Buf[4];
    unsigned char Bytes[2*4];
    unsigned char In[16*4];
    bool Done;