diff options
author | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-10-22 16:27:47 +0000 |
---|---|---|
committer | Poul-Henning Kamp <phk@FreeBSD.org> | 1996-10-22 16:27:47 +0000 |
commit | 40060a90b994b006447799ea47dbfe2d81a041f9 (patch) | |
tree | ceee8ef517bcd35f7b6a951993b111b7d4fcceab /lib/libmd/md5.h | |
parent | f98f97bb1e4af1b64bb3f2a996f260dc7cf44be1 (diff) |
Notes
Diffstat (limited to 'lib/libmd/md5.h')
-rw-r--r-- | lib/libmd/md5.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libmd/md5.h b/lib/libmd/md5.h index da0c116c2e0af..422cd7b00210a 100644 --- a/lib/libmd/md5.h +++ b/lib/libmd/md5.h @@ -28,8 +28,8 @@ documentation and/or software. #define _MD5_H_ /* MD5 context. */ typedef struct MD5Context { - unsigned long state[4]; /* state (ABCD) */ - unsigned long count[2]; /* number of bits, modulo 2^64 (lsb first) */ + u_int32_t state[4]; /* state (ABCD) */ + u_int32_t count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ } MD5_CTX; |