]> mj.ucw.cz Git - libucw.git/blobdiff - ucw/md5.h
Main recio: Allow rec_io_(start|stop)_read from the read_handler
[libucw.git] / ucw / md5.h
index 400c875219a47089422e3d72d72952cc9afd5cce..75966cac6f75b82241b624074ff596e8315ab5e4 100644 (file)
--- a/ucw/md5.h
+++ b/ucw/md5.h
@@ -27,7 +27,7 @@ void md5_init(md5_context *context); /** Initialize the MD5 hashing algorithm in
  */
 void md5_update(md5_context *context, const byte *buf, uns len);
 /**
- * Call this after the last md5_update(). It will terminate the
+ * Call this after the last @md5_update(). It will terminate the
  * algorithm and return a pointer to the result.
  *
  * Note that the data it points to are stored inside the @context, so
@@ -52,6 +52,7 @@ void md5_transform(u32 buf[4], const u32 in[16]);
  * @buffer, creates the hash from them and returns it in @output.
  *
  * It is equivalent to this code:
+ *
  *  md5_context c;
  *  md5_init(&c);
  *  md5_update(&c, buffer, length);