osip_md5.h   osip_md5.h 
skipping to change at line 72 skipping to change at line 72
/** /**
* Structure for holding MD5 context. * Structure for holding MD5 context.
* @var MD5_CTX * @var MD5_CTX
*/ */
typedef struct typedef struct
{ {
UINT4 state[4]; /* state (ABCD) */ UINT4 state[4]; /* state (ABCD) */
UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */ UINT4 count[2]; /* number of bits, modulo 2^64 (lsb first) */
unsigned char buffer[64]; /* input buffer */ unsigned char buffer[64]; /* input buffer */
} }
MD5_CTX; osip_MD5_CTX;
void MD5Init PROTO_LIST ((MD5_CTX *)); void osip_MD5Init PROTO_LIST ((osip_MD5_CTX *));
void MD5Update PROTO_LIST ((MD5_CTX *, unsigned char *, unsigned int)); void osip_MD5Update PROTO_LIST ((osip_MD5_CTX *, unsigned char *, unsigne
void MD5Final PROTO_LIST ((unsigned char[16], MD5_CTX *)); d int));
void osip_MD5Final PROTO_LIST ((unsigned char[16], osip_MD5_CTX *));
#ifdef __cplusplus #ifdef __cplusplus
} }
#endif #endif
#endif #endif
#endif #endif
 End of changes. 2 change blocks. 
4 lines changed or deleted 5 lines changed or added

This html diff was produced by rfcdiff 1.41. The latest version is available from http://tools.ietf.org/tools/rfcdiff/