comparison src/md5.c @ 48:56c54cf7c5b6 r19-16b90

Import from CVS: tag r19-16b90
author cvs
date Mon, 13 Aug 2007 08:56:04 +0200
parents 859a2309aef8
children 131b0175ea99
comparison
equal deleted inserted replaced
47:11c6df210d7f 48:56c54cf7c5b6
32 #include "buffer.h" 32 #include "buffer.h"
33 #include "insdel.h" 33 #include "insdel.h"
34 34
35 typedef unsigned char *POINTER;/* POINTER defines a generic pointer type */ 35 typedef unsigned char *POINTER;/* POINTER defines a generic pointer type */
36 typedef unsigned short int UINT2;/* UINT2 defines a two byte word */ 36 typedef unsigned short int UINT2;/* UINT2 defines a two byte word */
37 typedef unsigned long int UINT4;/* UINT4 defines a four byte word */ 37 typedef unsigned int UINT4;/* UINT4 defines a four byte word */
38 38
39 #define PROTO_LIST(list) list 39 #define PROTO_LIST(list) list
40 #define MD_CTX MD5_CTX 40 #define MD_CTX MD5_CTX
41 #define MDInit MD5Init 41 #define MDInit MD5Init
42 #define MDUpdate MD5Update 42 #define MDUpdate MD5Update