summaryrefslogtreecommitdiff
path: root/src/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/md5.h')
-rw-r--r--src/md5.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/md5.h b/src/md5.h
index a7b9f17..9dc72c7 100644
--- a/src/md5.h
+++ b/src/md5.h
@@ -18,7 +18,10 @@ typedef unsigned long uint32;
#endif
struct MD5Context {
- unsigned char in[64];
+ union {
+ unsigned char ui8[64];
+ uint32 ui32[16];
+ } in;
uint32 buf[4];
uint32 bits[2];
int doByteReverse;