1/* tag: Tom Lord Tue Dec 4 14:57:15 2001 (hashing.doc) 2 */ 3/************************************************************************ 4 *(h0 "Hashing") 5 * 6 7Hash values and hash tables are useful in many programs. The 8Hackerlab C Library provides: 9 10\hash utilities/ -- functions for computing hash values in common 11situations. Hash functions for strings can be found elsewhere. (For 12strings of 8-bit characters, see xref:"Computing Hash Values From 13Strings". For Unicode strings, see *XREF*.) 14 15\an md5 implementation/ -- functions to compute an md5 digest 16of an arbitrary string of bytes. 17 18\hash tables/ -- a general-purpose implementation of variably sized 19hash tables. 20 21 */ 22/*(menu) 23 */ 24/*(include-documentation "hash-utils.c") 25 */ 26 27/*(include-documentation "md5-utils.c") 28 */ 29 30/*(include-documentation "md5.c") 31 */ 32 33/*(include-documentation "sha1.c") 34 */ 35 36 37/*(include-documentation "hashtree.c") 38 */ 39 40