定义了这个结构体:
typedef struct{
uint32_t state[4]; /* state (ABCD) */ 
uint32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ 
unsigned char buffer[64]; /* input buffer */ 
} MD5_CTX; 
但运行起来老是:
\加密算法\3\md5c.h(43) : error C2371: 'MD5_CTX' : redefinition; different basic types
        e:\加密算法\3\md5c.h(43) : see declaration of 'MD5_CTX'
执行 cl.exe 时出错.
在 程序的其他地方也没定义.