00001 00002 00003 00004 00005 00006 00007 00008 00009 00010 00011 00012 00013 00014 00015 00016 00017 00018 00019 00020 00021 00022 00023 00024 00025 00026 00027 00028 00029 #ifndef __SEAL_CONFIG_H__ 00030 #define __SEAL_CONFIG_H__ 00031 00032 // Change the value if an unsigned char type has size other than 8 in your 00033 // system. If you are not sure, then use the sizeof operator to find the 00034 // size. 00035 #define SIZEOF_UCHAR 8 00036 00037 // Change the value if an unsigned int type has size other than 32 in your 00038 // system. If you are not sure, then use the sizeof operator to find the 00039 // size. 00040 #define SIZEOF_UINT 32 00041 00042 #endif // __SEAL_CONFIG_H__ 00043