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

Diff for /src/include/sha1.h between version 1.19 and 1.20

version 1.19, 2004/04/29 15:51:16 version 1.20, 2004/05/03 17:30:14
Line 23 
Line 23 
   
 __BEGIN_DECLS  __BEGIN_DECLS
 void SHA1Init(SHA1_CTX *);  void SHA1Init(SHA1_CTX *);
   void SHA1Pad(SHA1_CTX *);
 void SHA1Transform(u_int32_t [5], const u_int8_t [SHA1_BLOCK_LENGTH])  void SHA1Transform(u_int32_t [5], const u_int8_t [SHA1_BLOCK_LENGTH])
         __attribute__((__bounded__(__minbytes__,1,5)))          __attribute__((__bounded__(__minbytes__,1,5)))
         __attribute__((__bounded__(__minbytes__,2,SHA1_BLOCK_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA1_BLOCK_LENGTH)));
 void SHA1Update(SHA1_CTX *, const u_int8_t *, unsigned int)  void SHA1Update(SHA1_CTX *, const u_int8_t *, size_t)
         __attribute__((__bounded__(__string__,2,3)));          __attribute__((__bounded__(__string__,2,3)));
 void SHA1Final(u_int8_t [SHA1_DIGEST_LENGTH], SHA1_CTX *)  void SHA1Final(u_int8_t [SHA1_DIGEST_LENGTH], SHA1_CTX *)
         __attribute__((__bounded__(__minbytes__,1,SHA1_DIGEST_LENGTH)));          __attribute__((__bounded__(__minbytes__,1,SHA1_DIGEST_LENGTH)));
 char *SHA1End(SHA1_CTX *, char *)  char *SHA1End(SHA1_CTX *, char *)
         __attribute__((__bounded__(__minbytes__,2,SHA1_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA1_DIGEST_STRING_LENGTH)));
 char *SHA1File(char *, char *)  char *SHA1File(char *, char *)
           __attribute__((__bounded__(__minbytes__,2,SHA1_DIGEST_STRING_LENGTH)));
   char *SHA1FileChunk(char *, char *, off_t, off_t)
         __attribute__((__bounded__(__minbytes__,2,SHA1_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA1_DIGEST_STRING_LENGTH)));
 char *SHA1Data(const u_int8_t *, size_t, char *)  char *SHA1Data(const u_int8_t *, size_t, char *)
         __attribute__((__bounded__(__string__,1,2)))          __attribute__((__bounded__(__string__,1,2)))

Legend:
Removed from v.1.19  
changed lines
  Added in v.1.20