# HG changeset patch # User meillo@marmaro.de # Date 1279483388 -7200 # Node ID 06525982a56c9654ee230c0fdffc599ad1ad5100 # Parent 52c82d755215c46e3fc6016bb97420db28a228ae we need at least 32 bits, so let's take a long Solar Designer explained to me that it was int for better performance diff -r 52c82d755215 -r 06525982a56c src/md5/md5.h --- a/src/md5/md5.h Sun Jul 18 22:01:04 2010 +0200 +++ b/src/md5/md5.h Sun Jul 18 22:03:08 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;