X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=bertos%2Falgo%2Frandpool.c;h=4d420f3e8127bfab037e87857ebad885cc8f80bf;hb=HEAD;hp=45bf52851321c2bf418633cef82532073d70ff33;hpb=c4ce14ab6ed86d2d9a5ee72fcb023110fb1a1772;p=bertos.git diff --git a/bertos/algo/randpool.c b/bertos/algo/randpool.c index 45bf5285..4d420f3e 100644 --- a/bertos/algo/randpool.c +++ b/bertos/algo/randpool.c @@ -32,7 +32,6 @@ * * \brief API function for to manage entropy pool. * - * \version $Id$ * \author Daniele Basile */ @@ -105,7 +104,7 @@ static void randpool_stir(EntropyPool *pool) /*Insert a message digest in entropy pool.*/ randpool_push(pool, md2_end(&context), MD2_DIGEST_LEN); - pool->counter = pool->counter + 1; + pool->counter = pool->counter + 1; } @@ -156,8 +155,8 @@ void randpool_add(EntropyPool *pool, void *data, size_t entropy) /** * Randpool function initialization. - * The entropy pool can be initialize also with - * a previous entropy pool. + * The entropy pool can be initialize also with + * a previous entropy pool. */ void randpool_init(EntropyPool *pool, void *_data, size_t len) { @@ -175,7 +174,7 @@ void randpool_init(EntropyPool *pool, void *_data, size_t len) if(data) { /* - * Initialize a entropy pool with a + * Initialize a entropy pool with a * previous pool, and assume all pool as * entropy. */ @@ -215,7 +214,7 @@ void randpool_get(EntropyPool *pool, void *_data, size_t n_byte) data = (uint8_t *)_data; /* Test if i + CONFIG_MD2_BLOCK_LEN is inside of entropy pool.*/ - ASSERT((MD2_DIGEST_LEN + i) < CONFIG_SIZE_ENTROPY_POOL); + ASSERT((MD2_DIGEST_LEN + i) <= CONFIG_SIZE_ENTROPY_POOL); md2_init(&context);