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

Diff for /src/include/rmd160.h between version 1.14 and 1.15

version 1.14, 2004/04/29 15:51:16 version 1.15, 2004/05/03 17:30:14
Line 43 
Line 43 
 void     RMD160Transform(u_int32_t [5], const u_int8_t [RMD160_BLOCK_LENGTH])  void     RMD160Transform(u_int32_t [5], const u_int8_t [RMD160_BLOCK_LENGTH])
                 __attribute__((__bounded__(__minbytes__,1,5)))                  __attribute__((__bounded__(__minbytes__,1,5)))
                 __attribute__((__bounded__(__minbytes__,2,RMD160_BLOCK_LENGTH)));                  __attribute__((__bounded__(__minbytes__,2,RMD160_BLOCK_LENGTH)));
 void     RMD160Update(RMD160_CTX *, const u_int8_t *, u_int32_t)  void     RMD160Update(RMD160_CTX *, const u_int8_t *, size_t)
                 __attribute__((__bounded__(__string__,2,3)));                  __attribute__((__bounded__(__string__,2,3)));
   void     RMD160Pad(RMD160_CTX *);
 void     RMD160Final(u_int8_t [RMD160_DIGEST_LENGTH], RMD160_CTX *)  void     RMD160Final(u_int8_t [RMD160_DIGEST_LENGTH], RMD160_CTX *)
                 __attribute__((__bounded__(__minbytes__,1,RMD160_DIGEST_LENGTH)));                  __attribute__((__bounded__(__minbytes__,1,RMD160_DIGEST_LENGTH)));
 char    *RMD160End(RMD160_CTX *, char *)  char    *RMD160End(RMD160_CTX *, char *)
                 __attribute__((__bounded__(__minbytes__,2,RMD160_DIGEST_STRING_LENGTH)));                  __attribute__((__bounded__(__minbytes__,2,RMD160_DIGEST_STRING_LENGTH)));
 char    *RMD160File(char *, char *)  char    *RMD160File(char *, char *)
                   __attribute__((__bounded__(__minbytes__,2,RMD160_DIGEST_STRING_LENGTH)));
   char    *RMD160FileChunk(char *, char *, off_t, off_t)
                 __attribute__((__bounded__(__minbytes__,2,RMD160_DIGEST_STRING_LENGTH)));                  __attribute__((__bounded__(__minbytes__,2,RMD160_DIGEST_STRING_LENGTH)));
 char    *RMD160Data(const u_int8_t *, size_t, char *)  char    *RMD160Data(const u_int8_t *, size_t, char *)
                 __attribute__((__bounded__(__string__,1,2)))                  __attribute__((__bounded__(__string__,1,2)))

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