Mercurial > masqmail
diff src/md5/md5.h @ 210:e0938c511243
we need at least 32 bits, so let's take a long
Solar Designer explained to me that it was int for better performance
author | meillo@marmaro.de |
---|---|
date | Sun, 18 Jul 2010 22:02:54 +0200 |
parents | 10da50168dab |
children | 8742d2cee364 |
line wrap: on
line diff
--- a/src/md5/md5.h Sun Jul 18 21:58:15 2010 +0200 +++ b/src/md5/md5.h Sun Jul 18 22:02:54 2010 +0200 @@ -14,7 +14,7 @@ #define _MD5_H /* Any 32-bit or wider unsigned integer data type will do */ -typedef unsigned int MD5_u32plus; +typedef unsigned long MD5_u32plus; typedef struct { MD5_u32plus lo, hi;