summaryrefslogtreecommitdiffstatshomepage
path: root/src/lib/util/md5.c
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2015-06-07 17:37:34 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2015-06-07 17:37:34 +0200
commitb6ce8ee991c7e14ca214a2931bfbc4e4a5a0dc0f (patch)
treeda1e239053b7bfd9e841a103bbb36aefb71c4e7f /src/lib/util/md5.c
parentb6a4cf45ca6fdf842b319806d61d638cf2d8b2d2 (diff)
Licenses for Raphael Nabet (nw)
Diffstat (limited to 'src/lib/util/md5.c')
-rw-r--r--src/lib/util/md5.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/lib/util/md5.c b/src/lib/util/md5.c
index 1fdcb26de03..7c571d9442e 100644
--- a/src/lib/util/md5.c
+++ b/src/lib/util/md5.c
@@ -153,6 +153,16 @@ MD5Final(md5byte digest[16], struct MD5Context *ctx)
* reflect the addition of 16 longwords of new data. MD5Update blocks
* the data and converts bytes into longwords for this routine.
*/
+
+/**
+ * @fn void MD5Transform(UWORD32 buf[4], UWORD32 const in[16])
+ *
+ * @brief Md 5 transform.
+ *
+ * @param buf The buffer.
+ * @param in The in.
+ */
+
void
MD5Transform(UWORD32 buf[4], UWORD32 const in[16])
{