aboutsummaryrefslogtreecommitdiff
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.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/u-boot/md5.h b/include/u-boot/md5.h
index 6d48592aa6..d61364c0ae 100644
--- a/include/u-boot/md5.h
+++ b/include/u-boot/md5.h
@@ -19,6 +19,10 @@ struct MD5Context {
};
};
+void MD5Init(struct MD5Context *ctx);
+void MD5Update(struct MD5Context *ctx, unsigned char const *buf, unsigned len);
+void MD5Final(unsigned char digest[16], struct MD5Context *ctx);
+
/*
* Calculate and store in 'output' the MD5 digest of 'len' bytes at
* 'input'. 'output' must have enough space to hold 16 bytes.