diff -r c14b27abe452 -r 83d85e32c713 project_files/frontlib/md5/md5.h --- a/project_files/frontlib/md5/md5.h Thu Dec 06 10:01:01 2012 +0100 +++ b/project_files/frontlib/md5/md5.h Tue Dec 04 09:24:10 2012 +0100 @@ -63,11 +63,11 @@ typedef unsigned char md5_byte_t; /* 8-bit byte */ typedef unsigned int md5_word_t; /* 32-bit word */ -/* Define the state of the MD5 Algorithm. */ +/*! Define the state of the MD5 Algorithm. */ typedef struct md5_state_s { - md5_word_t count[2]; /* message length in bits, lsw first */ - md5_word_t abcd[4]; /* digest buffer */ - md5_byte_t buf[64]; /* accumulate block */ + md5_word_t count[2]; /*! message length in bits, lsw first */ + md5_word_t abcd[4]; /*! digest buffer */ + md5_byte_t buf[64]; /*! accumulate block */ } md5_state_t; #ifdef __cplusplus @@ -75,13 +75,13 @@ { #endif -/* Initialize the algorithm. */ +/*! Initialize the algorithm. */ void md5_init(md5_state_t *pms); -/* Append a string to the message. */ +/*! Append a string to the message. */ void md5_append(md5_state_t *pms, const md5_byte_t *data, int nbytes); -/* Finish the message and return the digest. */ +/*! Finish the message and return the digest. */ void md5_finish(md5_state_t *pms, md5_byte_t digest[16]); #ifdef __cplusplus