From d8fe3868996c80cd3de775584fde730c32c309c9 Mon Sep 17 00:00:00 2001 From: Mike Buland Date: Thu, 13 Jan 2011 00:16:41 +0000 Subject: md5...is...broken...I'm...fixing it... --- src/md5.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/md5.h') 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 /** * Compute one block of input data. */ - void compBlock( long *x, long *lsum ); - void compCap( long *sumout ); + void compBlock( long *x, uint32_t *lsum ); + void compCap( uint32_t *sumout ); - long inbuf[16]; - long iFill; - long sum[4]; + uint32_t inbuf[16]; + uint32_t iFill; + uint32_t sum[4]; uint64_t iBytes; }; }; -- cgit v1.2.3