diff options
Diffstat (limited to 'src/md5.h')
-rw-r--r-- | src/md5.h | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -72,7 +72,7 @@ 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 */ @@ -84,13 +84,13 @@ extern "C" { #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 |