X-Git-Url: http://www.chiark.greenend.org.uk/ucgi/~mdw/git/mLib/blobdiff_plain/0683223aa93d14e4b1d0620010392c518a3a6392..d4efbcd93c940ad522fcf8c601ec1829d2e0b10d:/unihash.c diff --git a/unihash.c b/unihash.c index ad6e52d..9f9719b 100644 --- a/unihash.c +++ b/unihash.c @@ -7,7 +7,7 @@ * (c) 2003 Straylight/Edgeware */ -/*----- Licensing notice --------------------------------------------------* +/*----- Licensing notice --------------------------------------------------* * * This file is part of the mLib utilities library. * @@ -15,12 +15,12 @@ * it under the terms of the GNU Library General Public License as * published by the Free Software Foundation; either version 2 of the * License, or (at your option) any later version. - * + * * mLib is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Library General Public License for more details. - * + * * You should have received a copy of the GNU Library General Public * License along with mLib; if not, write to the Free * Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, @@ -86,7 +86,7 @@ void unihash_setkey(unihash_info *i, uint32 k) * * Returns: Hash of data so far. * - * Use: Hashes data. Call this as many times as needed. + * Use: Hashes data. Call this as many times as needed. */ uint32 unihash_hash(const unihash_info *i, uint32 a, @@ -97,7 +97,7 @@ uint32 unihash_hash(const unihash_info *i, uint32 a, assert(UNIHASH_NBATCH == 4); #define FULLMULT(u, x) \ - (i->s[u][0][U8((x) >> 0)] ^ i->s[u][1][U8((x) >> 8)] ^ \ + (i->s[u][0][U8((x) >> 0)] ^ i->s[u][1][U8((x) >> 8)] ^ \ i->s[u][2][U8((x) >> 16)] ^ i->s[u][3][U8((x) >> 24)]); #define BYTEMULT(u, x) i->s[u][0][x] @@ -141,7 +141,7 @@ uint32 unihash_hash(const unihash_info *i, uint32 a, * Returns: The hash value computed. * * Use: All-in-one hashing function. No faster than using the - * separate calls, but more convenient. + * separate calls, but more convenient. */ uint32 unihash(const unihash_info *i, const void *p, size_t sz) @@ -193,11 +193,11 @@ static int verify(dstr *v) if (h != hh) { ok = 0; fprintf(stderr, "\nunihash failed\n"); - fprintf(stderr, " key = %08lx\n", (unsigned long)k); - fprintf(stderr, " data = %s\n", v[1].buf); - fprintf(stderr, " step = %d\n", step[i]); - fprintf(stderr, " expected = %08lx\n", (unsigned long)h); - fprintf(stderr, " computed = %08lx\n", (unsigned long)hh); + fprintf(stderr, " key = %08lx\n", (unsigned long)k); + fprintf(stderr, " data = %s\n", v[1].buf); + fprintf(stderr, " step = %d\n", step[i]); + fprintf(stderr, " expected = %08lx\n", (unsigned long)h); + fprintf(stderr, " computed = %08lx\n", (unsigned long)hh); } } return (ok);