View | Details | Raw Unified
Collapse All | Expand All

(-) unshield-0.5.orig/lib/md5/global.h (-1 / +1 lines)
 Lines 17-23    Link Here 
typedef unsigned short int UINT2;
typedef unsigned short int UINT2;
/* UINT4 defines a four byte word */
/* UINT4 defines a four byte word */
typedef unsigned long int UINT4;
typedef unsigned int UINT4;
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
/* PROTO_LIST is defined depending on how PROTOTYPES is defined above.
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
If using PROTOTYPES, then PROTO_LIST returns the list, otherwise it
(-) unshield-0.5.orig/lib/md5/md5c.c (-1 / +1 lines)
 Lines 68-74    Link Here 
/* ROTATE_LEFT rotates x left n bits.
/* ROTATE_LEFT rotates x left n bits.
 */
 */
#define ROTATE_LEFT(x, n) (((x) << (n)) | ((x) >> (32-(n))))
#define ROTATE_LEFT(x, n) ((((x) << (n)) & 0xffffffffU) | ((x) >> (32-(n))))
/* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
/* FF, GG, HH, and II transformations for rounds 1, 2, 3, and 4.
Rotation is separate from addition to prevent recomputation.
Rotation is separate from addition to prevent recomputation.