X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=appconfig.h;h=c68cf40e040e109b349c17a2d6ba8f089a51d3e0;hb=83bdfc821b94188314a854356a67da2e89e5c8ab;hp=50ca3da8c028f379a4b2e6f98ef94ed4345405bb;hpb=9bb2cfb465c44f973c07d64548c09d685f9c2ba2;p=bertos.git diff --git a/appconfig.h b/appconfig.h index 50ca3da8..c68cf40e 100755 --- a/appconfig.h +++ b/appconfig.h @@ -46,6 +46,15 @@ /*#* *#* $Log$ + *#* Revision 1.16 2007/02/12 15:29:41 asterix + *#* Add CONFIG_RANDPOOL_TIMER macro to swich on or off timer support in randpool. + *#* + *#* Revision 1.15 2007/02/08 14:20:35 asterix + *#* Add CONFIG_SIZE_ENTROPY_POOL. + *#* + *#* Revision 1.14 2007/02/06 11:37:26 asterix + *#* Add CONFIG_MD2_STD_PERM for use standard permutation in MD2. + *#* *#* Revision 1.13 2007/01/31 13:49:40 asterix *#* Add config size block for MD2 *#* @@ -92,8 +101,8 @@ *#* Move cfg/config.h to appconfig.h. *#*/ -#ifndef APPCONFIG_COMMON_H -#define APPCONFIG_COMMON_H +#ifndef APPCONFIG_H +#define APPCONFIG_H /** Baud-rate for the kdebug console */ #define CONFIG_KDEBUG_BAUDRATE 19200 @@ -231,7 +240,16 @@ /// Enable smooth scrolling in menus #define CONFIG_MENU_SMOOTH 1 -/// Size of block for MD2 algorithm +/// Size of block for MD2 algorithm. #define CONFIG_MD2_BLOCK_LEN 16 -#endif /* APPCONFIG_COMMON_H */ +/// Use standard permutation in MD2 algorithm. +#define CONFIG_MD2_STD_PERM 0 + +/// Define a size, in byte, of entropy pool. +#define CONFIG_SIZE_ENTROPY_POOL 64 + +/// Turn on or off timer support in Randpool. +#define CONFIG_RANDPOOL_TIMER 1 + +#endif /* APPCONFIG_H */