=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/include/Attic/md4.h,v retrieving revision 1.13 retrieving revision 1.14 diff -c -r1.13 -r1.14 *** src/include/Attic/md4.h 2004/04/29 15:51:16 1.13 --- src/include/Attic/md4.h 2004/05/03 17:30:14 1.14 *************** *** 1,4 **** ! /* $OpenBSD: md4.h,v 1.13 2004/04/29 15:51:16 millert Exp $ */ /* * This code implements the MD4 message-digest algorithm. --- 1,4 ---- ! /* $OpenBSD: md4.h,v 1.14 2004/05/03 17:30:14 millert Exp $ */ /* * This code implements the MD4 message-digest algorithm. *************** *** 32,37 **** --- 32,38 ---- void MD4Init(MD4_CTX *); void MD4Update(MD4_CTX *, const u_int8_t *, size_t) __attribute__((__bounded__(__string__,2,3))); + void MD4Pad(MD4_CTX *); void MD4Final(u_int8_t [MD4_DIGEST_LENGTH], MD4_CTX *) __attribute__((__bounded__(__minbytes__,1,MD4_DIGEST_LENGTH))); void MD4Transform(u_int32_t [4], const u_int8_t [MD4_BLOCK_LENGTH]) *************** *** 40,45 **** --- 41,48 ---- char *MD4End(MD4_CTX *, char *) __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH))); char *MD4File(char *, char *) + __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH))); + char *MD4FileChunk(char *, char *, off_t, off_t) __attribute__((__bounded__(__minbytes__,2,MD4_DIGEST_STRING_LENGTH))); char *MD4Data(const u_int8_t *, size_t, char *) __attribute__((__bounded__(__string__,1,2)))