aboutsummaryrefslogtreecommitdiff
path: root/src/md5.h
diff options
context:
space:
mode:
authorMike Buland <eichlan@xagasoft.com>2011-01-13 00:16:41 +0000
committerMike Buland <eichlan@xagasoft.com>2011-01-13 00:16:41 +0000
commitd8fe3868996c80cd3de775584fde730c32c309c9 (patch)
tree2b0c265adc6241809aecb784b4ddbabbb90f38c4 /src/md5.h
parent1effc94df7e558de6319082e390803911cf45c24 (diff)
downloadlibbu++-d8fe3868996c80cd3de775584fde730c32c309c9.tar.gz
libbu++-d8fe3868996c80cd3de775584fde730c32c309c9.tar.bz2
libbu++-d8fe3868996c80cd3de775584fde730c32c309c9.tar.xz
libbu++-d8fe3868996c80cd3de775584fde730c32c309c9.zip
md5...is...broken...I'm...fixing it...
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};