]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/md5.h
* merged from apt--mvo
[apt.git] / apt-pkg / contrib / md5.h
index 9e20f7cef0ddaae3c6e60c319dca0efd18d17e63..247b3fab936c28229071f2810d46956a325b5607 100644 (file)
 #ifndef APTPKG_MD5_H
 #define APTPKG_MD5_H
 
-#ifdef __GNUG__
-#pragma interface "apt-pkg/md5.h"
-#endif 
 
 #include <string>
 #include <algorithm>
+#include <stdint.h>
 
 using std::string;
 using std::min;
@@ -58,7 +56,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;