=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/Attic/md4.h,v retrieving revision 1.1 retrieving revision 1.2 diff -c -r1.1 -r1.2 *** src/include/Attic/md4.h 1996/06/03 22:25:54 1.1 --- src/include/Attic/md4.h 1996/09/29 14:53:09 1.2 *************** *** 1,5 **** /* MD4.H - header file for MD4C.C ! * $OpenBSD: md4.h,v 1.1 1996/06/03 22:25:54 niklas Exp $ */ /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All --- 1,5 ---- /* MD4.H - header file for MD4C.C ! * $OpenBSD: md4.h,v 1.2 1996/09/29 14:53:09 millert Exp $ */ /* Copyright (C) 1991-2, RSA Data Security, Inc. Created 1991. All *************** *** 27,34 **** #define _MD4_H_ /* MD4 context. */ typedef struct MD4Context { ! unsigned long state[4]; /* state (ABCD) */ ! unsigned long count[2]; /* number of bits, modulo 2^64 (lsb first) */ unsigned char buffer[64]; /* input buffer */ } MD4_CTX; --- 27,34 ---- #define _MD4_H_ /* MD4 context. */ typedef struct MD4Context { ! 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 */ } MD4_CTX;