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

Diff for /src/include/Attic/md4.h between version 1.13 and 1.14

version 1.13, 2004/04/29 15:51:16 version 1.14, 2004/05/03 17:30:14
Line 32 
Line 32 
 void     MD4Init(MD4_CTX *);  void     MD4Init(MD4_CTX *);
 void     MD4Update(MD4_CTX *, const u_int8_t *, size_t)  void     MD4Update(MD4_CTX *, const u_int8_t *, size_t)
                 __attribute__((__bounded__(__string__,2,3)));                  __attribute__((__bounded__(__string__,2,3)));
   void     MD4Pad(MD4_CTX *);
 void     MD4Final(u_int8_t [MD4_DIGEST_LENGTH], MD4_CTX *)  void     MD4Final(u_int8_t [MD4_DIGEST_LENGTH], MD4_CTX *)
                 __attribute__((__bounded__(__minbytes__,1,MD4_DIGEST_LENGTH)));                  __attribute__((__bounded__(__minbytes__,1,MD4_DIGEST_LENGTH)));
 void     MD4Transform(u_int32_t [4], const u_int8_t [MD4_BLOCK_LENGTH])  void     MD4Transform(u_int32_t [4], const u_int8_t [MD4_BLOCK_LENGTH])
Line 40 
Line 41 
 char    *MD4End(MD4_CTX *, char *)  char    *MD4End(MD4_CTX *, char *)
                 __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH)));                  __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH)));
 char    *MD4File(char *, char *)  char    *MD4File(char *, char *)
                   __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH)));
   char    *MD4FileChunk(char *, char *, off_t, off_t)
                 __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH)));                  __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH)));
 char    *MD4Data(const u_int8_t *, size_t, char *)  char    *MD4Data(const u_int8_t *, size_t, char *)
                 __attribute__((__bounded__(__string__,1,2)))                  __attribute__((__bounded__(__string__,1,2)))

Legend:
Removed from v.1.13  
changed lines
  Added in v.1.14