]> Pileus Git - ~andy/fetchmail/blobdiff - fm_md5.h
Merge branch 'legacy_63'
[~andy/fetchmail] / fm_md5.h
index f55909a403d9e8b5a5991550e923900633cdbe61..ea61c8231cf9fcd0405a16f246f4f312e8910148 100644 (file)
--- a/fm_md5.h
+++ b/fm_md5.h
@@ -3,19 +3,13 @@
 
 #include "config.h"
 
-#include <sys/types.h>
+#include <stdint.h>
 
 #include "fetchmail.h"
 
-#if SIZEOF_INT == 4
-typedef unsigned int uint32;
-#else
-typedef unsigned long int uint32;
-#endif
-
 struct MD5Context {
-       uint32 buf[4];
-       uint32 bits[2];
+       uint32_t buf[4];
+       uint32_t bits[2];
        union {
            unsigned char in[64];
            uint32        in32[16];
@@ -25,7 +19,7 @@ struct MD5Context {
 void MD5Init(struct MD5Context *context);
 void MD5Update(struct MD5Context *context, const void *buf, unsigned len);
 void MD5Final(void *digest, struct MD5Context *context);
-void MD5Transform(uint32 buf[4], uint32 const in[16]);
+void MD5Transform(uint32_t buf[4], uint32_t const in[16]);
 
 /*
  * This is needed to make RSAREF happy on some MS-DOS compilers.