--- pgp/src/md5.h 2018/04/24 16:42:19 1.1.1.6 +++ pgp/src/md5.h 2018/04/24 16:43:38 1.1.1.7 @@ -1,7 +1,11 @@ #ifndef MD5_H #define MD5_H +#ifdef __alpha +typedef unsigned int uint32; +#else typedef unsigned long uint32; +#endif struct MD5Context { uint32 buf[4]; @@ -10,7 +14,8 @@ struct MD5Context { }; void MD5Init(struct MD5Context *context); -void MD5Update(struct MD5Context *context, unsigned char const *buf, unsigned len); +void MD5Update(struct MD5Context *context, unsigned char const *buf, + unsigned len); void MD5Final(unsigned char digest[16], struct MD5Context *context); void MD5Transform(uint32 buf[4], uint32 const in[16]);