[BACK]Return to md4.h CVS log [TXT][DIR] Up to [local] / src / include

Diff for /src/include/Attic/md4.h between version 1.1 and 1.2

version 1.1, 1996/06/03 22:25:54 version 1.2, 1996/09/29 14:53:09
Line 27 
Line 27 
 #define _MD4_H_  #define _MD4_H_
 /* MD4 context. */  /* MD4 context. */
 typedef struct MD4Context {  typedef struct MD4Context {
   unsigned long state[4];       /* state (ABCD) */    u_int32_t state[4];           /* state (ABCD) */
   unsigned long count[2];       /* number of bits, modulo 2^64 (lsb first) */    u_int32_t count[2];           /* number of bits, modulo 2^64 (lsb first) */
   unsigned char buffer[64];     /* input buffer */    unsigned char buffer[64];     /* input buffer */
 } MD4_CTX;  } MD4_CTX;
   

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.2