--- pgp/src/md5.h 2018/04/24 16:38:39 1.1.1.2 +++ pgp/src/md5.h 2018/04/24 16:39:20 1.1.1.3 @@ -38,7 +38,11 @@ */ /* typedef a 32-bit type */ +#ifdef __alpha +typedef unsigned int UINT4; +#else typedef unsigned long int UINT4; +#endif /* Data structure for MD5 (Message-Digest) computation */ typedef struct { @@ -51,4 +55,5 @@ typedef struct { void MD5Init(MD5_CTX *); void MD5Update(MD5_CTX *,unsigned char *,unsigned int); void MD5Final(MD5_CTX *); +void Transform(UINT4 *,UINT4 *);