diff options
Diffstat (limited to '')
-rw-r--r-- | src/md5.h | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -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 | }; |