Lines Matching defs:hash
7 #include "mail-user-hash.h"
13 unsigned int i, hash = 0;
42 for (i = 0; i < sizeof(hash); i++)
43 hash = (hash << CHAR_BIT) | md5[i];
44 if (hash == 0) {
45 /* Make sure we don't return the hash as 0, since it's often
47 trying to insert it into a hash table will assert-crash. */
48 hash = 1;
50 *hash_r = hash;