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

Diff for /src/include/Attic/md4.h between version 1.10 and 1.11

version 1.10, 2003/08/01 17:38:33 version 1.11, 2003/10/07 22:17:27
Line 37 
Line 37 
   
 __BEGIN_DECLS  __BEGIN_DECLS
 void   MD4Init(MD4_CTX *);  void   MD4Init(MD4_CTX *);
 void   MD4Update(MD4_CTX *, const unsigned char *, size_t);  void   MD4Update(MD4_CTX *, const unsigned char *, size_t)
 void   MD4Final(unsigned char [16], MD4_CTX *);                  __attribute__((__bounded__(__string__,2,3)));
 void   MD4Transform(u_int32_t [4], const unsigned char [64]);  void   MD4Final(unsigned char [16], MD4_CTX *)
 char * MD4End(MD4_CTX *, char *);                  __attribute__((__bounded__(__minbytes__,1,16)));
 char * MD4File(char *, char *);  void   MD4Transform(u_int32_t [4], const unsigned char [64])
                   __attribute__((__bounded__(__minbytes__,1,4)))
                   __attribute__((__bounded__(__minbytes__,2,64)));
   char * MD4End(MD4_CTX *, char *)
                   __attribute__((__bounded__(__minbytes__,2,33)));
   char * MD4File(char *, char *)
                   __attribute__((__bounded__(__minbytes__,2,33)));
 char * MD4Data(const unsigned char *, size_t, char *)  char * MD4Data(const unsigned char *, size_t, char *)
                 __attribute__((__bounded__(__string__,3,2)));                  __attribute__((__bounded__(__string__,1,2)))
                   __attribute__((__bounded__(__minbytes__,3,33)));
 __END_DECLS  __END_DECLS
   
 #endif /* _MD4_H_ */  #endif /* _MD4_H_ */

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11