comparison src/md5.c @ 118:7d55a9ba150c r20-1b11

Import from CVS: tag r20-1b11
author cvs
date Mon, 13 Aug 2007 09:24:17 +0200
parents 131b0175ea99
children 8eaf7971accc
comparison
equal deleted inserted replaced
117:578fd4947a72 118:7d55a9ba150c
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