]> arthur.barton.de Git - ngircd-alex.git/blob - src/ngircd/hash.c
1b2f4e678b412df818c53d81a7c7c91dc2f753f6
[ngircd-alex.git] / src / ngircd / hash.c
1 /*
2  * ngIRCd -- The Next Generation IRC Daemon
3  * Copyright (c)2001-2009 Alexander Barton (alex@barton.de)
4  *
5  * This program is free software; you can redistribute it and/or modify
6  * it under the terms of the GNU General Public License as published by
7  * the Free Software Foundation; either version 2 of the License, or
8  * (at your option) any later version.
9  * Please read the file COPYING, README and AUTHORS for more information.
10  *
11  * Hash calculation
12  */
13
14
15 #include "portab.h"
16
17 static char UNUSED id[] = "$Id: hash.c,v 1.13 2006/10/06 21:23:47 fw Exp $";
18
19 #include "imp.h"
20 #include <assert.h>
21 #include <string.h>
22
23 #include "defines.h"
24 #include "tool.h"
25
26 #include "exp.h"
27 #include "hash.h"
28
29
30 static UINT32 jenkins_hash PARAMS(( register UINT8 *k, register UINT32 length, register UINT32 initval ));
31
32
33 GLOBAL UINT32
34 Hash( const char *String )
35 {
36         /* Hash-Wert ueber String berechnen */
37
38         char buffer[LINE_LEN];
39
40         strlcpy(buffer, String, sizeof(buffer));
41         return jenkins_hash((UINT8 *)ngt_LowerStr(buffer),
42                             (UINT32)strlen(buffer), 42);
43 } /* Hash */
44
45
46 /*
47  * Die hier verwendete Hash-Funktion stammt aus lookup2.c von Bob Jenkins
48  * (URL: <http://burtleburtle.net/bob/c/lookup2.c>). Aus dem Header:
49  * --------------------------------------------------------------------
50  * lookup2.c, by Bob Jenkins, December 1996, Public Domain.
51  * hash(), hash2(), hash3, and mix() are externally useful functions.
52  * Routines to test the hash are included if SELF_TEST is defined.
53  * You can use this free for any purpose.  It has no warranty.
54  * --------------------------------------------------------------------
55  * nicht alle seiner Funktionen werden hier genutzt.
56  */
57
58
59 #define hashsize(n) ((UINT32)1<<(n))
60 #define hashmask(n) (hashsize(n)-1)
61
62 #define mix(a,b,c) \
63 { \
64         a -= b; a -= c; a ^= (c>>13); \
65         b -= c; b -= a; b ^= (a<<8);  \
66         c -= a; c -= b; c ^= (b>>13); \
67         a -= b; a -= c; a ^= (c>>12); \
68         b -= c; b -= a; b ^= (a<<16); \
69         c -= a; c -= b; c ^= (b>>5);  \
70         a -= b; a -= c; a ^= (c>>3);  \
71         b -= c; b -= a; b ^= (a<<10); \
72         c -= a; c -= b; c ^= (b>>15); \
73 } /* mix */
74
75
76 static UINT32
77 jenkins_hash( register UINT8 *k, register UINT32 length, register UINT32 initval )
78 {
79         /* k: the key
80          * length: length of the key
81          * initval: the previous hash, or an arbitrary value
82          */
83
84         register UINT32 a,b,c,len;
85
86         /* Set up the internal state */
87         len = length;
88         a = b = 0x9e3779b9;     /* the golden ratio; an arbitrary value */
89         c = initval;            /* the previous hash value */
90
91         /* handle most of the key */
92         while (len >= 12)
93         {
94                 a += (k[0] +((UINT32)k[1]<<8) +((UINT32)k[2]<<16) +((UINT32)k[3]<<24));
95                 b += (k[4] +((UINT32)k[5]<<8) +((UINT32)k[6]<<16) +((UINT32)k[7]<<24));
96                 c += (k[8] +((UINT32)k[9]<<8) +((UINT32)k[10]<<16)+((UINT32)k[11]<<24));
97                 mix(a,b,c);
98                 k += 12; len -= 12;
99         }
100
101         /* handle the last 11 bytes */
102         c += length;
103         switch( (int)len )      /* all the case statements fall through */
104         {
105                 case 11: c+=((UINT32)k[10]<<24);
106                 case 10: c+=((UINT32)k[9]<<16);
107                 case 9 : c+=((UINT32)k[8]<<8);
108                 /* the first byte of c is reserved for the length */
109                 case 8 : b+=((UINT32)k[7]<<24);
110                 case 7 : b+=((UINT32)k[6]<<16);
111                 case 6 : b+=((UINT32)k[5]<<8);
112                 case 5 : b+=k[4];
113                 case 4 : a+=((UINT32)k[3]<<24);
114                 case 3 : a+=((UINT32)k[2]<<16);
115                 case 2 : a+=((UINT32)k[1]<<8);
116                 case 1 : a+=k[0];
117                 /* case 0: nothing left to add */
118         }
119         mix(a,b,c);
120
121         /* report the result */
122         return c;
123 } /* jenkins_hash */
124
125
126 /* -eof- */