aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Thompson <daniel.thompson@linaro.org>2017-07-30 08:09:38 +0100
committerDaniel Thompson <daniel.thompson@linaro.org>2017-07-31 17:26:27 +0100
commitdd5316253e70ffe29d9dcb0a3b537364c896ccc7 (patch)
treea38a2ca1662da9f697423b7565340d95bc39a2b1
parente42438ba7cc6e2d134fa755c7b802dec088baa1e (diff)
include: u-boot: md5: RDA support
-rw-r--r--include/u-boot/md5.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/include/u-boot/md5.h b/include/u-boot/md5.h
index 08924cce3c..e09c16a6e3 100644
--- a/include/u-boot/md5.h
+++ b/include/u-boot/md5.h
@@ -11,7 +11,10 @@
struct MD5Context {
__u32 buf[4];
__u32 bits[2];
- unsigned char in[64];
+ union {
+ unsigned char in[64];
+ __u32 in32[16];
+ };
};
/*