summaryrefslogtreecommitdiff
path: root/include/u-boot/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/u-boot/md5.h')
-rw-r--r--include/u-boot/md5.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/u-boot/md5.h b/include/u-boot/md5.h
index e5cb923d77..d61364c0ae 100644
--- a/include/u-boot/md5.h
+++ b/include/u-boot/md5.h
@@ -8,6 +8,8 @@
#include "compiler.h"
+#define MD5_SUM_LEN 16
+
struct MD5Context {
__u32 buf[4];
__u32 bits[2];
@@ -32,7 +34,7 @@ void md5 (unsigned char *input, int len, unsigned char output[16]);
* 'output' must have enough space to hold 16 bytes. If 'chunk' Trigger the
* watchdog every 'chunk_sz' bytes of input processed.
*/
-void md5_wd (unsigned char *input, int len, unsigned char output[16],
- unsigned int chunk_sz);
+void md5_wd(const unsigned char *input, unsigned int len,
+ unsigned char output[16], unsigned int chunk_sz);
#endif /* _MD5_H */