Mercurial > hg > xemacs-beta
comparison src/md5.c @ 70:131b0175ea99 r20-0b30
Import from CVS: tag r20-0b30
author | cvs |
---|---|
date | Mon, 13 Aug 2007 09:02:59 +0200 |
parents | 56c54cf7c5b6 |
children | 7d55a9ba150c |
comparison
equal
deleted
inserted
replaced
69:804d1389bcd6 | 70:131b0175ea99 |
---|---|
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 int UINT4;/* UINT4 defines a four byte word */ | 37 typedef unsigned long 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 |