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

Diff for /src/include/Attic/md4.h between version 1.3 and 1.4

version 1.3, 1996/09/30 03:55:47 version 1.4, 1996/11/24 02:25:57
Line 29 
Line 29 
 /* MD4 context. */  /* MD4 context. */
 typedef struct MD4Context {  typedef struct MD4Context {
     u_int32_t state[4];         /* state (ABCD) */      u_int32_t state[4];         /* state (ABCD) */
     u_int32_t count[2];         /* number of bits, modulo 2^64 (lsb first) */      u_int64_t count;            /* number of bits, modulo 2^64 */
     unsigned char buffer[64];   /* input buffer */      unsigned char buffer[64];   /* input buffer */
 } MD4_CTX;  } MD4_CTX;
   
 void   MD4Init __P((MD4_CTX *));  void   MD4Init __P((MD4_CTX *));
 void   MD4Update __P((MD4_CTX *, const unsigned char *, unsigned int));  void   MD4Update __P((MD4_CTX *, const unsigned char *, size_t));
 void   MD4Final __P((unsigned char [16], MD4_CTX *));  void   MD4Final __P((unsigned char [16], MD4_CTX *));
 char * MD4End __P((MD4_CTX *, char *));  char * MD4End __P((MD4_CTX *, char *));
 char * MD4File __P((char *, char *));  char * MD4File __P((char *, char *));
 char * MD4Data __P((const unsigned char *, unsigned int, char *));  char * MD4Data __P((const unsigned char *, size_t, char *));
   
 #endif /* _MD4_H_ */  #endif /* _MD4_H_ */

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4