blob: e5cb923d770bdfaac216ff21e00bfa11c47fc1ed [file] [log] [blame]
Andy Fleming72c23be2008-04-02 16:19:07 -05001/*
2 * This file was transplanted with slight modifications from Linux sources
3 * (fs/cifs/md5.h) into U-Boot by Bartlomiej Sieka <tur@semihalf.com>.
4 */
5
6#ifndef _MD5_H
7#define _MD5_H
8
Mike Frysinger4ad8e9f2009-07-02 19:23:25 -04009#include "compiler.h"
Andy Fleming72c23be2008-04-02 16:19:07 -050010
11struct MD5Context {
12 __u32 buf[4];
13 __u32 bits[2];
Marek Vasute7ab3802012-04-29 00:28:40 +020014 union {
15 unsigned char in[64];
16 __u32 in32[16];
17 };
Andy Fleming72c23be2008-04-02 16:19:07 -050018};
19
Chia-Wei Wangabc83f92021-07-30 09:08:02 +080020void MD5Init(struct MD5Context *ctx);
21void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len);
22void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
23
Andy Fleming72c23be2008-04-02 16:19:07 -050024/*
25 * Calculate and store in 'output' the MD5 digest of 'len' bytes at
26 * 'input'. 'output' must have enough space to hold 16 bytes.
27 */
28void md5 (unsigned char *input, int len, unsigned char output[16]);
29
Bartlomiej Siekada5045d2008-04-22 12:27:56 +020030/*
31 * Calculate and store in 'output' the MD5 digest of 'len' bytes at 'input'.
32 * 'output' must have enough space to hold 16 bytes. If 'chunk' Trigger the
33 * watchdog every 'chunk_sz' bytes of input processed.
34 */
35void md5_wd (unsigned char *input, int len, unsigned char output[16],
36 unsigned int chunk_sz);
37
Andy Fleming72c23be2008-04-02 16:19:07 -050038#endif /* _MD5_H */