1 /* GLOBAL.H - RSAREF types and constants
2  *
3  */
4 
5 
6 /* PROTOTYPES should be set to one if and only if the compiler supports
7   function argument prototyping.
8 The following makes PROTOTYPES default to 0 if it has not already
9   been defined with C compiler flags.
10  */
11 #ifndef MD5GLOBAL_H
12 #define MD5GLOBAL_H
13 
14 /* POINTER defines a generic pointer type */
15 typedef unsigned char *POINTER;
16 
17 /* UINT2 defines a two byte word */
18 typedef unsigned short int UINT2;
19 
20 /* UINT4 defines a four byte word */
21 typedef unsigned int UINT4;
22 
23 #endif /* MD5GLOBAL_H */
24