=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/sha1.h,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- src/include/sha1.h 2003/08/01 17:38:33 1.14 +++ src/include/sha1.h 2003/10/07 22:17:27 1.15 @@ -1,4 +1,4 @@ -/* $OpenBSD: sha1.h,v 1.14 2003/08/01 17:38:33 avsm Exp $ */ +/* $OpenBSD: sha1.h,v 1.15 2003/10/07 22:17:27 avsm Exp $ */ /* * SHA-1 in C @@ -18,14 +18,21 @@ #include __BEGIN_DECLS -void SHA1Transform(u_int32_t state[5], const u_char buffer[64]); +void SHA1Transform(u_int32_t state[5], const u_char buffer[64]) + __attribute__((__bounded__(__minbytes__,1,5))) + __attribute__((__bounded__(__minbytes__,2,64))); void SHA1Init(SHA1_CTX *context); -void SHA1Update(SHA1_CTX *context, const u_char *data, u_int len); -void SHA1Final(u_char digest[20], SHA1_CTX *context); -char *SHA1End(SHA1_CTX *, char *); -char *SHA1File(char *, char *); +void SHA1Update(SHA1_CTX *context, const u_char *data, u_int len) + __attribute__((__bounded__(__string__,2,3))); +void SHA1Final(u_char digest[20], SHA1_CTX *context) + __attribute__((__bounded__(__minbytes__,1,20))); +char *SHA1End(SHA1_CTX *, char *) + __attribute__((__bounded__(__minbytes__,2,41))); +char *SHA1File(char *, char *) + __attribute__((__bounded__(__minbytes__,2,41))); char *SHA1Data(const u_char *, size_t, char *) - __attribute__((__bounded__ (__string__,3,2))); + __attribute__((__bounded__(__string__,1,2))) + __attribute__((__bounded__(__minbytes__,3,41))); __END_DECLS #define SHA1_DIGESTSIZE 20