#ifndef _GLOBAL_
#define _GLOBAL_

/* how we are representing bytes */ 
typedef unsigned char uchar;

/* how to obtain a seed */
void getRandomSeed(uchar *buf, int nbytes, const char *script_name);


/* from here down, various definition that a lot of Rsaref souce code uses */

typedef unsigned int bits32;

typedef unsigned char *POINTER;

#endif

