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

Diff for /src/include/sha2.h between version 1.5 and 1.6

version 1.5, 2004/05/05 17:39:47 version 1.6, 2004/06/22 01:57:30
Line 76 
Line 76 
         __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH)));          __attribute__((__bounded__(__minbytes__,1,SHA256_DIGEST_LENGTH)));
 char *SHA256_End(SHA256_CTX *, char *)  char *SHA256_End(SHA256_CTX *, char *)
         __attribute__((__bounded__(__minbytes__,2,SHA256_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA256_DIGEST_STRING_LENGTH)));
 char *SHA256_File(char *, char *)  char *SHA256_File(const char *, char *)
         __attribute__((__bounded__(__minbytes__,2,SHA256_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA256_DIGEST_STRING_LENGTH)));
 char *SHA256_FileChunk(char *, char *, off_t, off_t)  char *SHA256_FileChunk(const char *, char *, off_t, off_t)
         __attribute__((__bounded__(__minbytes__,2,SHA256_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA256_DIGEST_STRING_LENGTH)));
 char *SHA256_Data(const u_int8_t *, size_t, char *)  char *SHA256_Data(const u_int8_t *, size_t, char *)
         __attribute__((__bounded__(__string__,1,2)))          __attribute__((__bounded__(__string__,1,2)))
Line 93 
Line 93 
         __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH)));          __attribute__((__bounded__(__minbytes__,1,SHA384_DIGEST_LENGTH)));
 char *SHA384_End(SHA384_CTX *, char *)  char *SHA384_End(SHA384_CTX *, char *)
         __attribute__((__bounded__(__minbytes__,2,SHA384_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA384_DIGEST_STRING_LENGTH)));
 char *SHA384_File(char *, char *)  char *SHA384_File(const char *, char *)
         __attribute__((__bounded__(__minbytes__,2,SHA384_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA384_DIGEST_STRING_LENGTH)));
 char *SHA384_FileChunk(char *, char *, off_t, off_t)  char *SHA384_FileChunk(const char *, char *, off_t, off_t)
         __attribute__((__bounded__(__minbytes__,2,SHA384_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA384_DIGEST_STRING_LENGTH)));
 char *SHA384_Data(const u_int8_t *, size_t, char *)  char *SHA384_Data(const u_int8_t *, size_t, char *)
         __attribute__((__bounded__(__string__,1,2)))          __attribute__((__bounded__(__string__,1,2)))
Line 110 
Line 110 
         __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH)));          __attribute__((__bounded__(__minbytes__,1,SHA512_DIGEST_LENGTH)));
 char *SHA512_End(SHA512_CTX *, char *)  char *SHA512_End(SHA512_CTX *, char *)
         __attribute__((__bounded__(__minbytes__,2,SHA512_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA512_DIGEST_STRING_LENGTH)));
 char *SHA512_File(char *, char *)  char *SHA512_File(const char *, char *)
         __attribute__((__bounded__(__minbytes__,2,SHA512_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA512_DIGEST_STRING_LENGTH)));
 char *SHA512_FileChunk(char *, char *, off_t, off_t)  char *SHA512_FileChunk(const char *, char *, off_t, off_t)
         __attribute__((__bounded__(__minbytes__,2,SHA512_DIGEST_STRING_LENGTH)));          __attribute__((__bounded__(__minbytes__,2,SHA512_DIGEST_STRING_LENGTH)));
 char *SHA512_Data(const u_int8_t *, size_t, char *)  char *SHA512_Data(const u_int8_t *, size_t, char *)
         __attribute__((__bounded__(__string__,1,2)))          __attribute__((__bounded__(__string__,1,2)))

Legend:
Removed from v.1.5  
changed lines
  Added in v.1.6