diff options
author | Xavier Roche <roche@httrack.com> | 2015-03-31 20:55:45 +0200 |
---|---|---|
committer | Xavier Roche <roche@httrack.com> | 2015-03-31 20:55:45 +0200 |
commit | c07ffe14788aacf34a9496769f59fbb667a512bb (patch) | |
tree | 7250425dc57be585da66b93f712512f6d0d3808f /src/md5.h | |
parent | 209e754444ffa5fe245a77dd0d503d6669e09d87 (diff) | |
parent | 6316a0bbba489053da99f516d3b99ca37a967b4b (diff) |
Merge branch 'master' of github.com:xroche/httrack
Diffstat (limited to 'src/md5.h')
-rw-r--r-- | src/md5.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -17,7 +17,7 @@ typedef unsigned long uint32; #error undefined: SIZEOF_LONG #endif -typedef struct MD5Context { +struct MD5Context { union { unsigned char ui8[64]; uint32 ui32[16]; @@ -25,7 +25,7 @@ typedef struct MD5Context { uint32 buf[4]; uint32 bits[2]; int doByteReverse; -} MD5CTX; +}; void MD5Init(struct MD5Context *context, int brokenEndian); void MD5Update(struct MD5Context *context, unsigned char const *buf, |