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

Diff for /src/include/rmd160.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 36 
Line 36 
   
 __BEGIN_DECLS  __BEGIN_DECLS
 void     RMD160Init(RMD160_CTX *);  void     RMD160Init(RMD160_CTX *);
 void     RMD160Transform(u_int32_t [5], const u_char [64]);  void     RMD160Transform(u_int32_t [5], const u_char [64])
 void     RMD160Update(RMD160_CTX *, const u_char *, u_int32_t);                  __attribute__((__bounded__(__minbytes__,1,5)))
 void     RMD160Final(u_char [20], RMD160_CTX *);                  __attribute__((__bounded__(__minbytes__,2,64)));
 char    *RMD160End(RMD160_CTX *, char *);  void     RMD160Update(RMD160_CTX *, const u_char *, u_int32_t)
 char    *RMD160File(char *, char *);                  __attribute__((__bounded__(__string__,2,3)));
   void     RMD160Final(u_char [20], RMD160_CTX *)
                   __attribute__((__bounded__(__minbytes__,1,20)));
   char    *RMD160End(RMD160_CTX *, char *)
                   __attribute__((__bounded__(__minbytes__,2,41)));
   char    *RMD160File(char *, char *)
                   __attribute__((__bounded__(__minbytes__,2,41)));
 char    *RMD160Data(const u_char *, size_t, char *)  char    *RMD160Data(const u_char *, size_t, char *)
                 __attribute__((__bounded__(__string__,3,2)));                  __attribute__((__bounded__(__string__,1,2)))
                   __attribute__((__bounded__(__minbytes__,3,41)));
 __END_DECLS  __END_DECLS
   
 #endif  /* _RMD160_H */  #endif  /* _RMD160_H */

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