diff options
author | 2015-07-20 08:11:41 +0200 | |
---|---|---|
committer | 2015-07-20 08:11:41 +0200 | |
commit | 4bcb0c13f50ddb1cd3fd0341b4bb31d9c3c7fc7a (patch) | |
tree | 55eccacfca0e69435d0d4e6615205310ca11f271 /src/lib/util/md5.c | |
parent | d132946c6f45aa8d271c6180e86f72dd08243048 (diff) | |
parent | 229785f695b26c702c8490792611f59d0366a933 (diff) |
Merge pull request #5 from mamedev/master
Sync to base master
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..3c0abb33b30 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]) { |