Add rotating hash algorithm.
[bertos.git] / algos / rotating_hash.h
1 /**
2  * \file
3  * <!--
4  * Copyright 2007 Develer S.r.l. (http://www.develer.com/)
5  * All Rights Reserved.
6  * -->
7  *
8  * \brief Rotating Hash algorithm (interface).
9  *
10  * This is a simple yet powerfull checksum algorithm.
11  * Instead of just xor-ing the data, rotating hash
12  * circular shift the checksum 4 place left before xoring.
13  * This is a bit more stronger than simply sum the data.
14  *
15  * \version $Id$
16  *
17  * \author Francesco Sacchi <batt@develer.com>
18  */
19
20 /*#*
21  *#* $Log$
22  *#* Revision 1.1  2007/06/07 09:11:17  batt
23  *#* Add rotating hash algorithm.
24  *#*
25  *#* Revision 1.1  2007/01/12 20:30:49  batt
26  *#* Add right Rotating hash file.
27  *#*
28  *#*/
29
30 #ifndef ALGOS_ROTATING_H
31 #define ALGOS_ROTATING_H
32
33 #include <cfg/compiler.h>
34
35 typedef uint16_t rotating_t;
36
37 /**
38  * Update checksum pointed by \c rot with \c c data.
39  */
40 INLINE void rotating_update1(uint8_t c, rotating_t *rot)
41 {
42         *rot = (*rot << 4) ^ (*rot >> 12) ^ c;
43 }
44
45 /**
46  * Update checksum pointed by \c rot with data supplied in \c buf.
47  */
48 INLINE void rotating_update(const void *_buf, size_t len, rotating_t *rot)
49 {
50         const uint8_t *buf = (const uint8_t *)_buf;
51
52         while (len--)
53                 rotating_update1(*buf++, rot);
54 }
55
56
57 #endif // ALGOS_ROTATING_H