aboutsummaryrefslogtreecommitdiff
path: root/src/md5.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/md5.h')
-rw-r--r--src/md5.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/md5.h b/src/md5.h
index 79b1d09..0be65fd 100644
--- a/src/md5.h
+++ b/src/md5.h
@@ -36,12 +36,12 @@ namespace Bu
36 /** 36 /**
37 * Compute one block of input data. 37 * Compute one block of input data.
38 */ 38 */
39 void compBlock( long *x, long *lsum ); 39 void compBlock( long *x, uint32_t *lsum );
40 void compCap( long *sumout ); 40 void compCap( uint32_t *sumout );
41 41
42 long inbuf[16]; 42 uint32_t inbuf[16];
43 long iFill; 43 uint32_t iFill;
44 long sum[4]; 44 uint32_t sum[4];
45 uint64_t iBytes; 45 uint64_t iBytes;
46 }; 46 };
47}; 47};