X-Git-Url: https://codewiz.org/gitweb?a=blobdiff_plain;f=algos%2Fmd2.c;h=338005c40c05937ad91716d771979f37d9285d46;hb=4fbc2e2a3aa83de683dd440f9036ced5d5879071;hp=f99434b340e273e254046583a8caf8fa75c1eb39;hpb=b57958545b3d65da27c87935f415712fc78b6d3a;p=bertos.git diff --git a/algos/md2.c b/algos/md2.c index f99434b3..338005c4 100755 --- a/algos/md2.c +++ b/algos/md2.c @@ -13,6 +13,15 @@ /*#* *#* $Log$ + *#* Revision 1.10 2007/02/02 15:37:45 asterix + *#* Change md2_end prototype. Remove a unneeded memcpy in md2_end. Add comments. + *#* + *#* Revision 1.9 2007/02/02 13:10:01 asterix + *#* Fix some bugs in md2_pad and md2_update fuction. + *#* + *#* Revision 1.8 2007/02/01 14:45:56 asterix + *#* Rewrite md2_update function and fix some bug. + *#* *#* Revision 1.7 2007/01/31 18:04:15 asterix *#* Write md2_end function *#* @@ -29,15 +38,17 @@ #include "md2.h" -#include //memset(); +#include //memset(), memcpy(); #include +#include //ASSERT() +#include //MIN() + /* * Official array of 256 byte pemutation contructed from digits of pi, defined * in the RFC 1319. */ -static uint8_t md2_perm[256] = -{ +static uint8_t md2_perm[256] = { 41, 46, 67, 201, 162, 216, 124, 1, 61, 54, 84, 161, 236, 240, 6, 19, 98, 167, 5, 243, 192, 199, 115, 140, 152, 147, 43, 217, 188, 76, 130, 202, 30, 155, 87, 60, 253, 212, 224, 22, 103, 66, 111, 24, @@ -57,65 +68,77 @@ static uint8_t md2_perm[256] = 166, 119, 114, 248, 235, 117, 75, 10, 49, 68, 80, 180, 143, 237, 31, 26, 219, 153, 141, 51, 159, 17, 131, 20 }; + /** - * Pad function. Fill input array with unsigned char until - * lenght of block is equal to CONFIG_MD2_BLOCK_LEN. - * + * Pad function. Put len_pad unsigned char in + * input block. */ -static void md2_pad(void *block, size_t len_pad) +static void md2_pad(void *_block, size_t len_pad) { - if (len_pad <= CONFIG_MD2_BLOCK_LEN) - { - for(int i=(CONFIG_MD2_BLOCK_LEN-len_pad);icounter = 0; - memset(context->state, 0, sizeof(context->state)); - memset(context->checksum, 0, sizeof(context->checksum)); + + memset(context, 0, sizeof(Md2Context)); } + /** * Update block. */ -void md2_update(Md2Context *context, void *block_in, size_t block_len) +void md2_update(Md2Context *context, void *_block_in, size_t block_len) { - uint8_t store_block_len; //Lenght of block store in context buffer - uint8_t empty_block_len; //Lenght of block empty in context buffer - - store_block_len = context->counter; - empty_block_len = CONFIG_MD2_BLOCK_LEN - store_block_len; - - /* - * Fill context buffer with input block and compute it. - */ - if(block_len > empty_block_len) - { - memcpy(&context->buffer[store_block_len], block_in, empty_block_len); - md2_compute(context->state, context->checksum, context->buffer); - block_len -= empty_block_len; - } - else - { - memcpy(&context->buffer[store_block_len], block_in, block_len); - context->counter += block_len; + uint8_t *block_in; - } - /* - * Split input in block long CONFIG_MD2_BLOCK_LEN and compute it. + * Choose a number of block that fill input context buffer. */ - for(int i = empty_block_len + 1; i + CONFIG_MD2_BLOCK_LEN < block_len; i += CONFIG_MD2_BLOCK_LEN) + size_t missing_len = MIN(block_len, CONFIG_MD2_BLOCK_LEN - context->counter); + + block_in = (uint8_t *)_block_in; + + while(block_len > 0) { - memcpy(context->buffer, &block_in[i], CONFIG_MD2_BLOCK_LEN); - md2_compute(context->state, context->checksum, context->buffer); + /* + * Copy in the buffer input block. + */ + memcpy(&context->buffer[context->counter], block_in, missing_len); + + /* + * Update a context counter, input block length and remaning + * context buffer block lenght. + */ + context->counter += missing_len; + block_len -= missing_len; + block_in += missing_len; + + /* + * If buffer is full, compute it. + */ + if (context->counter >= CONFIG_MD2_BLOCK_LEN) + { + md2_compute(context->state, context->checksum, context->buffer); + context->counter = 0; + } } - /* - * Copy remaining block in context buffer and update context counter. - */ - memcpy(context->buffer,&block_in[i], block_len - i); - context->counter = block_len - i; - + } /** - * Ends MD2 message digest operation, writing the message digest and cleaning context. + * Ends an MD2 message digest operation. + * This fuction take an context and return a pointer + * to context state. + * + * \param context in input. + * \return a pointer to context state (message digest). */ -void md2_end(Md2Context *context, void *msg_digest) +uint8_t *md2_end(Md2Context *context) { - /* - * Pad remaning context buffer. - */ - md2_pad(context->buffer, CONFIG_MD2_BLOCK_LEN - context->counter); + + uint8_t buf[CONFIG_MD2_BLOCK_LEN]; /* - * Update context and checksum. + * Fill remaning empty context buffer. */ - md2_update(context, context->buffer, CONFIG_MD2_BLOCK_LEN); - - md2_update(context, context->checksum, CONFIG_MD2_BLOCK_LEN); + md2_pad(buf, CONFIG_MD2_BLOCK_LEN - context->counter); /* - * Copy first CONFIG_MD2_BLOCK_LEN byte of context's state - * in msg_digest. The msg_digest is the message digest of - * MD2 algorithm. + * Update context buffer and compute it. */ - memcpy(msg_digest, context->state, CONFIG_MD2_BLOCK_LEN); - + md2_update(context, buf, CONFIG_MD2_BLOCK_LEN - context->counter); + /* - * Clean the context. + * Add context checksum to message input. */ - memset(context, 0, sizeof(context)); - + md2_update(context, context->checksum, CONFIG_MD2_BLOCK_LEN); + + + return context->state; //return a pointer to message digest. }