/** * \file * * * \brief Collection of functions to manage entropy pool. * * * \author Daniele Basile * * $WIZ$ module_name = "randpool" * $WIZ$ module_depends = "timer", "sprintf" * $WIZ$ module_configuration = "bertos/cfg/cfg_randpool.h" */ #ifndef ALGO_RANDPOOL_H #define ALGO_RANDPOOL_H #include "cfg/cfg_randpool.h" #include /** * Sturct data of entropy pool. */ typedef struct EntropyPool { size_t entropy; ///< Actual value of entropy (byte). size_t pos_add; ///< Number of byte added in entropy pool. size_t pos_get; ///< Number of byte got in entropy pool. size_t counter; ///< Counter. #if CONFIG_RANDPOOL_TIMER size_t last_counter; ///< Last timer value. #endif uint8_t pool_entropy[CONFIG_SIZE_ENTROPY_POOL]; ///< Entropy pool. } EntropyPool; void randpool_add(EntropyPool *pool, void *data, size_t entropy); void randpool_init(EntropyPool *pool, void *_data, size_t len); size_t randpool_size(EntropyPool *pool); void randpool_get(EntropyPool *pool, void *data, size_t n_byte); uint8_t *randpool_pool(EntropyPool *pool); #endif /* ALGO_RANDPOOL_H */