diff options
Diffstat (limited to 'src/lib/util/md5.c')
-rw-r--r-- | src/lib/util/md5.c | 10 |
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]) { |