#ifndef CONFIG_H
#define CONFIG_H

#include <stdint.h>

static char xtea_key[17];
static const int XTEA_KEY_SIZE = 16;	/* max bytes */
static const int KEY_SIZE = 16;			/* real size */
static const int XTEA_KEY_RANGE = 58;	/* ASCII letters*/
static uint32_t XTEA_KEY_HASH;			/* key hash */

#endif