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

Diff for /src/include/md5.h between version 1.2 and 1.3

version 1.2, 1996/09/29 14:53:10 version 1.3, 1996/09/30 03:55:48
Line 26 
Line 26 
   
 #ifndef _MD5_H_  #ifndef _MD5_H_
 #define _MD5_H_  #define _MD5_H_
   
 /* MD5 context. */  /* MD5 context. */
 typedef struct MD5Context {  typedef struct MD5Context {
   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_int32_t count[2];         /* number of bits, modulo 2^64 (lsb first) */
   unsigned char buffer[64];     /* input buffer */      unsigned char buffer[64];   /* input buffer */
 } MD5_CTX;  } MD5_CTX;
   
 void   MD5Init (MD5_CTX *);  void   MD5Init __P((MD5_CTX *));
 void   MD5Update (MD5_CTX *, const unsigned char *, unsigned int);  void   MD5Update __P((MD5_CTX *, const unsigned char *, unsigned int));
 void   MD5Final (unsigned char [16], MD5_CTX *);  void   MD5Final __P((unsigned char [16], MD5_CTX *));
 char * MD5End(MD5_CTX *, char *);  char * MD5End __P((MD5_CTX *, char *));
 char * MD5File(char *, char *);  char * MD5File __P((char *, char *));
 char * MD5Data(const unsigned char *, unsigned int, char *);  char * MD5Data __P((const unsigned char *, unsigned int, char *));
   
 #endif /* _MD5_H_ */  #endif /* _MD5_H_ */

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