# HG changeset patch # User meillo@marmaro.de # Date 1279875184 -7200 # Node ID 8742d2cee36445059ad7798453045eb181dfa8c1 # Parent 44043b92114fcce14f996adf3a4f46b28c4a589c added a note to the long vs. int question in md5.h Solar Designer explained to me in privat conversation that the int had performed much better on some systems and that 16bit ints are very rare. Still I like using the long. diff -r 44043b92114f -r 8742d2cee364 src/md5/md5.h --- a/src/md5/md5.h Wed Jul 21 22:14:09 2010 +0200 +++ b/src/md5/md5.h Fri Jul 23 10:53:04 2010 +0200 @@ -14,6 +14,7 @@ #define _MD5_H /* Any 32-bit or wider unsigned integer data type will do */ +/* Note: Using an int will work on most systems and might perform much better */ typedef unsigned long MD5_u32plus; typedef struct {