]> git.saurik.com Git - apt.git/blobdiff - apt-pkg/contrib/md5.h
* merged the pdiff stuff
[apt.git] / apt-pkg / contrib / md5.h
index 9e20f7cef0ddaae3c6e60c319dca0efd18d17e63..e280d714e8ad8302ea6214421bc23514776db6eb 100644 (file)
@@ -29,6 +29,7 @@
 
 #include <string>
 #include <algorithm>
+#include <stdint.h>
 
 using std::string;
 using std::min;
@@ -58,7 +59,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;