尝试更换(Md5.c第41行)
typedef unsigned long int UINT4;
通过
typedef uint32_t UINT4;
(如果需要,请包括stdint.h)
在64位计算机上,long int(通常)为64位而不是32位
编辑 :
我尝试使用64位opteron来解决此问题。

尝试更换(Md5.c第41行)
typedef unsigned long int UINT4;
通过
typedef uint32_t UINT4;
(如果需要,请包括stdint.h)
在64位计算机上,long int(通常)为64位而不是32位
编辑 :
我尝试使用64位opteron来解决此问题。