Sistema l'errore da me commesso in fase di conversione...
[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.2  2007/10/01 10:46:33  batt
23  *#* Add rotating hash init function.
24  *#*
25  *#* Revision 1.1  2007/06/07 09:11:17  batt
26  *#* Add rotating hash algorithm.
27  *#*
28  *#* Revision 1.1  2007/01/12 20:30:49  batt
29  *#* Add right Rotating hash file.
30  *#*
31  *#*/
32
33 #ifndef ALGOS_ROTATING_H
34 #define ALGOS_ROTATING_H
35
36 #include <cfg/compiler.h>
37
38 typedef uint16_t rotating_t;
39
40
41 /**
42  * Init rotating checksum.
43  */
44 INLINE void rotating_init(rotating_t *rot)
45 {
46         *rot = 0;
47 }
48
49 /**
50  * Update checksum pointed by \c rot with \c c data.
51  */
52 INLINE void rotating_update1(uint8_t c, rotating_t *rot)
53 {
54         *rot = (*rot << 4) ^ (*rot >> 12) ^ c;
55 }
56
57 /**
58  * Update checksum pointed by \c rot with data supplied in \c buf.
59  */
60 INLINE void rotating_update(const void *_buf, size_t len, rotating_t *rot)
61 {
62         const uint8_t *buf = (const uint8_t *)_buf;
63
64         while (len--)
65                 rotating_update1(*buf++, rot);
66 }
67
68
69 #endif // ALGOS_ROTATING_H